Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a different port for dev postgres #3346

Merged
merged 1 commit into from
Sep 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ postgres:
docker run -d --name=postgres-dev --rm \
-e POSTGRES_PASSWORD=password123 \
--tmpfs=/var/lib/postgresql/data \
-p 5432:5432 \
-p 15432:5432 \
postgres:14-alpine -c fsync=off -c full_page_writes=off
@echo
@echo Copy the line below into the shell used to run tests
@echo 'export POSTGRESQL_CONNECTION="host=localhost port=5432 user=postgres dbname=postgres password=password123"'
@echo 'export POSTGRESQL_CONNECTION="host=localhost port=15432 user=postgres dbname=postgres password=password123"'


LINT_ARGS ?= --fix
Expand Down