Skip to content

Commit

Permalink
change db port from 5432 to 5435 (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
pallabez authored Nov 28, 2023
1 parent 6696f10 commit 58cb3e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ AUTH_TOKEN_INVALIDATION_TIME_IN_SECONDS=2592000
POSTGRES_PASSWORD='goals-password'
POSTGRES_DB='goals-db'
POSTGRES_USER='goals-user'
POSTGRES_PORT='5432'
POSTGRES_PORT='5435'
POSTGRES_HOST='localhost'

# ALLOWED_HOSTS accepts string as value with space as delimiter
Expand Down
5 changes: 4 additions & 1 deletion compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ services:
image: postgres:latest
container_name: goals-postgres
ports:
- "5432:5432"
- "5435:5435"
expose:
- "5435"
command: "-p 5435"
env_file:
- .env

Expand Down

0 comments on commit 58cb3e0

Please sign in to comment.