Shortening docker compose health check

pull/722/head
Dessalines 2019-04-09 17:26:26 -07:00
parent 698f3639f2
commit f1bd0b50ea
1 changed files with 4 additions and 3 deletions

View File

@ -10,9 +10,9 @@ services:
POSTGRES_DB: rrr POSTGRES_DB: rrr
healthcheck: healthcheck:
test: ["CMD-SHELL", "pg_isready -U rrr"] test: ["CMD-SHELL", "pg_isready -U rrr"]
interval: 30s interval: 5s
timeout: 30s timeout: 5s
retries: 3 retries: 20
lemmy: lemmy:
build: build:
context: . context: .
@ -22,6 +22,7 @@ services:
environment: environment:
LEMMY_FRONT_END_DIR: /app/dist LEMMY_FRONT_END_DIR: /app/dist
DATABASE_URL: postgres://rrr:rrr@db:5432/rrr DATABASE_URL: postgres://rrr:rrr@db:5432/rrr
restart: always
depends_on: depends_on:
db: db:
condition: service_healthy condition: service_healthy