Skip to content

Commit

Permalink
chore: Update POSTGRES_PORT in compose.base.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinAAcebeyL committed Sep 3, 2024
1 parent 7cb457f commit 0f550bb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions containers/compose.base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
POSTGRES_USER: ${POSTGRES_USER:-postgres-admin}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-1kdis94id}
POSTGRES_HOST: ${POSTGRES_HOST:-growthplan-postgres}
POSTGRES_PORT: ${POSTGRES_HOST:-5432}
POSTGRES_PORT: ${POSTGRES_PORT:-5432}
POSTGRES_DBNAME: ${POSTGRES_DBNAME:-postgres}
ENV: ${ENV:-dev}
depends_on:
Expand All @@ -31,9 +31,11 @@ services:
POSTGRES_USER: ${POSTGRES_USER:-postgres-admin}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-1kdis94id}
POSTGRES_HOST: ${POSTGRES_HOST:-growthplan-postgres}
POSTGRES_PORT: ${POSTGRES_HOST:-5432}
POSTGRES_PORT: ${POSTGRES_PORT:-5432}
volumes:
- growthplandb:/var/lib/postgresql/data
ports:
- "0.0.0.0:${POSTGRES_PORT:-5432}:${POSTGRES_PORT:-5432}"

volumes:
growthplandb:

0 comments on commit 0f550bb

Please sign in to comment.