We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04fe1b3 commit 14e1016Copy full SHA for 14e1016
1 file changed
docker-compose.production.yml
@@ -7,13 +7,13 @@ services:
7
db:
8
image: postgres:13.10
9
environment:
10
- - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
11
- - POSTGRES_USER=${POSTGRES_USER}
12
- - POSTGRES_DB=${POSTGRES_DB}
+ - POSTGRES_PASSWORD=kittygram_password
+ - POSTGRES_USER=kittygram_user
+ - POSTGRES_DB=kittygram
13
volumes:
14
- pg_data_production:/var/lib/postgresql/data
15
healthcheck:
16
- test: [ "CMD-SHELL", "pg_isready -U $POSTGRES_USER" ]
+ test: [ "CMD-SHELL", "pg_isready -U kittygram_user" ]
17
interval: 10s
18
timeout: 5s
19
retries: 5
0 commit comments