Files
homelab-docker-config/spliit/docker-compose.updated.yml
2025-11-11 00:01:18 +00:00

25 lines
538 B
YAML

services:
spliit:
image: ghcr.io/spliit-app/spliit:1.19.0
restart: always
ports:
- 3001:3000
depends_on:
shared-postgres:
condition: service_healthy
env_file:
- .env
environment:
TZ: ${TZ}
POSTGRES_HOST: shared-postgres
POSTGRES_PORT: 5432
POSTGRES_DB: ${SPLIIT_POSTGRES_DB}
POSTGRES_USER: ${SPLIIT_POSTGRES_USER}
POSTGRES_PASSWORD: ${SPLIIT_POSTGRES_PASSWORD}
networks:
- postgres-network
networks:
postgres-network:
external: true