try out spliit

This commit is contained in:
Peter Smit
2025-04-07 15:36:47 +02:00
parent 2c39366da7
commit 68ec5e133d
3 changed files with 24 additions and 0 deletions

17
spliit/docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
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