# Koffan ## compose.yml ```yaml --- services: koffan: image: ghcr.io/pansalut/koffan:latest container_name: koffan restart: unless-stopped ports: - "3005:80" volumes: - koffan_data:/data environment: - APP_PASSWORD=changeme healthcheck: test: ["CMD", "wget", "--spider", "-q", "http://localhost:80"] interval: 30s timeout: 10s retries: 3 volumes: koffan_data: ```
