docker-stacks/stacks/bookclub/docker-compose.yml
knight 4dbb0b9180 Initial commit: 23 docker stacks for GitOps deployment
Stacks included:
- Infrastructure: traefik, authentik, gitea, registry, watchtower, dockge
- Monitoring: smokeping, changedetection
- Apps: ghost, gollum, wallabag, radicale, invidious, xbackbone, filebrowser, syncthing, zerotier
- Custom: obsidian-tools, memento, perilous, ramz, bookclub, brain

🤖 Generated with Claude Code
2025-12-31 13:29:43 -05:00

21 lines
566 B
YAML

services:
form-mailer:
build: .
container_name: bookclub-form-mailer
restart: unless-stopped
env_file:
- .env
labels:
- "traefik.enable=true"
- "traefik.http.routers.form-mailer.rule=Host(`bookclub.${DOMAIN}`)"
- "traefik.http.routers.form-mailer.entrypoints=https"
- "traefik.http.routers.form-mailer.tls=true"
- "traefik.http.routers.form-mailer.tls.certresolver=http"
- "traefik.http.services.form-mailer.loadbalancer.server.port=3000"
networks:
- web
networks:
web:
external: true