homelab-ansible/docker/kan/docker-compose.yml
2025-07-02 23:16:50 -04:00

12 lines
358 B
YAML

services:
web:
image: ghcr.io/kanbn/kan:latest
container_name: kan-web
ports:
- "7070:3000"
environment:
NEXT_PUBLIC_BASE_URL: http://localhost:3000
BETTER_AUTH_SECRET: your_auth_secret
POSTGRES_URL: postgresql://kan:password@10.89.0.102:5432/kan
NEXT_PUBLIC_ALLOW_CREDENTIALS: true
restart: unless-stopped