Files
chadebebe/docker-compose.yml
Adriano Belisario 4864bf6304
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
chore: add data snapshot, deployment compose, and CLAUDE.md
- Commit SQLite db snapshot (WAL checkpointed before copy)
- Replace upstream docker-compose with real deployment config
- Add CLAUDE.md documenting customization and deploy steps
- Gitignore secrets.json and SQLite temp files

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-03 18:29:38 +00:00

28 lines
794 B
YAML

services:
wishlist:
build: .
image: chadebebe-ptbr:latest
container_name: chadebebe
restart: unless-stopped
environment:
- ADMIN_USERNAME=${ADMIN_USERNAME:-admin}
- ADMIN_PASSWORD=${ADMIN_PASSWORD:-changeme}
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
- COOKIE_SECURE=true
volumes:
- ./data:/app/data
networks:
- web
labels:
- "traefik.enable=true"
- "traefik.http.routers.chadebebe.rule=Host(`chadebebe.omeu.website`)"
- "traefik.http.routers.chadebebe.entrypoints=https"
- "traefik.http.routers.chadebebe.tls=true"
- "traefik.http.routers.chadebebe.tls.certresolver=letsencrypt"
- "traefik.http.services.chadebebe.loadbalancer.server.port=3000"
networks:
web:
external: true