17 lines
353 B
YAML
17 lines
353 B
YAML
services:
|
|
app:
|
|
image: spliit2:1.15.0
|
|
ports:
|
|
- 3001:3000
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
db:
|
|
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 |