1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 10:14:04 +00:00

Try setting the Postgres password in docker-compose instead of ci.yml

This commit is contained in:
lukinovec 2023-05-22 12:40:09 +02:00
parent a29a5bb89a
commit c9f585a7e0
2 changed files with 2 additions and 1 deletions

View file

@ -47,7 +47,6 @@ jobs:
postgres:
image: postgres:latest
env:
POSTGRES_PASSWORD: 'postgres'
POSTGRES_DB: main
ports:
- 5432/tcp

View file

@ -68,6 +68,8 @@ services:
- '${DB_DATABASE}'
- '-U'
- '${DB_USERNAME}'
- '-e POSTGRES_PASSWORD='
- '${POSTGRES_PASSWORD}'
retries: 3
timeout: 5s
redis: