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
23 lines
555 B
YAML
23 lines
555 B
YAML
services:
|
|
app:
|
|
image: gitea.${DOMAIN}/knight/memento:latest
|
|
container_name: memento
|
|
restart: unless-stopped
|
|
expose:
|
|
- "3002"
|
|
env_file:
|
|
- .env
|
|
networks:
|
|
- web
|
|
- default
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.memento.entrypoints=https"
|
|
- "traefik.http.routers.memento.rule=Host(`memento.${DOMAIN}`)"
|
|
- "traefik.http.routers.memento.tls.certresolver=http"
|
|
- "traefik.http.services.memento.loadbalancer.server.port=3002"
|
|
|
|
networks:
|
|
web:
|
|
external: true
|