mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 18:34:04 +00:00
Fix env variables in docker-compose
This commit is contained in:
parent
e7736c8244
commit
6e9d6aa5f4
1 changed files with 3 additions and 3 deletions
|
|
@ -55,15 +55,15 @@ services:
|
||||||
image: 'postgres:15'
|
image: 'postgres:15'
|
||||||
user: 'postgres'
|
user: 'postgres'
|
||||||
ports:
|
ports:
|
||||||
- '${POSTGRES_PORT:-5432}'
|
- '${POSTGRES_PORT:-5434}'
|
||||||
environment:
|
environment:
|
||||||
PGPASSWORD: '${POSTGRES_PASSWORD:-postgres}'
|
PGPASSWORD: '${POSTGRES_PASSWORD:-postgres}'
|
||||||
PGPORT: '${POSTGRES_PORT:-5432}'
|
PGPORT: '${POSTGRES_PORT:-5434}'
|
||||||
POSTGRES_DB: main
|
POSTGRES_DB: main
|
||||||
POSTGRES_USER: 'postgres'
|
POSTGRES_USER: 'postgres'
|
||||||
POSTGRES_PASSWORD: 'postgres'
|
POSTGRES_PASSWORD: 'postgres'
|
||||||
expose:
|
expose:
|
||||||
- '${POSTGRES_PORT:-5432}'
|
- '${POSTGRES_PORT:-5434}'
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test:
|
||||||
- CMD
|
- CMD
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue