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
21 lines
566 B
YAML
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
|