remove useless health check

This commit is contained in:
Peter Smit
2025-04-07 15:57:39 +02:00
parent 07230b7556
commit cfb0a2862c

View File

@@ -4,8 +4,7 @@ services:
ports:
- 3001:3000
depends_on:
spliit_db:
condition: service_healthy
- spliit_db
environment:
TZ: ${TZ}
POSTGRES_HOST: spliit_db
@@ -16,11 +15,6 @@ services:
image: postgres:17
volumes:
- ${SPLIIT_POSTGRES_DIR}:/var/lib/postgresql/data
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U postgres']
interval: 5s
timeout: 5s
retries: 5
environment:
TZ: ${TZ}
POSTGRES_DB: ${SPLIIT_POSTGRES_DB}