umbrel-apps/kan/docker-compose.yml
2026-03-27 12:48:05 +01:00

43 lines
1.3 KiB
YAML

services:
app_proxy:
environment:
APP_HOST: kan_server_1
APP_PORT: 3000
PROXY_AUTH_ADD: "false"
migrate:
image: ghcr.io/kanbn/kan-migrate:0.5.6@sha256:a2460e460b70a77ad60a12a8057b2a720cb9e4037a015ea508574887c5bceca1
environment:
POSTGRES_URL: 'postgresql://kanuser:kanpassword@kan_db_1:5432/kan?sslmode=disable'
depends_on:
db:
condition: service_healthy
restart: on-failure
server:
image: ghcr.io/kanbn/kan:0.5.6@sha256:3509af72635922b8195fc08e052f6257f8a05c50c8afcadc636f78c717667673
environment:
NEXT_PUBLIC_BASE_URL: http://${DEVICE_DOMAIN_NAME}:8373
BETTER_AUTH_SECRET: ${APP_SEED}
POSTGRES_URL: 'postgresql://kanuser:kanpassword@kan_db_1:5432/kan?sslmode=disable'
NEXT_PUBLIC_ALLOW_CREDENTIALS: "true"
depends_on:
- db
restart: on-failure
db:
image: postgres:17.3@sha256:0321e2252ebfeecb8bc1a899755084d29bce872953e1a5a3e25ec0860b739098
user: "1000:1000"
environment:
POSTGRES_DB: kan
POSTGRES_USER: kanuser
POSTGRES_PASSWORD: kanpassword
healthcheck:
test: ["CMD-SHELL", "pg_isready -U kan -d kan"]
interval: 5s
timeout: 5s
retries: 10
restart: on-failure
volumes:
- ${APP_DATA_DIR}/data/db:/var/lib/postgresql/data