|
@@ -3,17 +3,14 @@ services:
|
|
|
image: postgres:15
|
|
|
ports:
|
|
|
- "${DB_PORT:-5432}:5432"
|
|
|
- environment:
|
|
|
- POSTGRES_USER: username
|
|
|
- POSTGRES_PASSWORD: password
|
|
|
- POSTGRES_DB: workout_cool
|
|
|
volumes:
|
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
healthcheck:
|
|
|
- test: ["CMD-SHELL", "pg_isready -U username -d workout_cool"]
|
|
|
+ test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]
|
|
|
interval: 5s
|
|
|
timeout: 5s
|
|
|
retries: 5
|
|
|
+ env_file: .env
|
|
|
|
|
|
workout_cool:
|
|
|
build:
|