mirror of
https://github.com/immich-app/immich
synced 2025-06-07 20:20:57 +00:00
fix: wait for db to start before server for e2e test (#18936)
* fix: wait for db to start before server for e2e test * empty - trigger checks
This commit is contained in:
parent
e746d27f5e
commit
19013af58f
@ -28,8 +28,10 @@ services:
|
||||
extra_hosts:
|
||||
- 'auth-server:host-gateway'
|
||||
depends_on:
|
||||
- redis
|
||||
- database
|
||||
redis:
|
||||
condition: service_started
|
||||
database:
|
||||
condition: service_healthy
|
||||
ports:
|
||||
- 2285:2285
|
||||
|
||||
@ -45,3 +47,9 @@ services:
|
||||
POSTGRES_DB: immich
|
||||
ports:
|
||||
- 5435:5432
|
||||
healthcheck:
|
||||
test: ['CMD-SHELL', 'pg_isready -U postgres -d immich']
|
||||
interval: 1s
|
||||
timeout: 5s
|
||||
retries: 30
|
||||
start_period: 10s
|
||||
|
Loading…
x
Reference in New Issue
Block a user