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
25 lines
605 B
YAML
25 lines
605 B
YAML
services:
|
|
app:
|
|
build: .
|
|
container_name: ramz
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3333:3333"
|
|
environment:
|
|
- GIN_MODE=release
|
|
volumes:
|
|
- ./templates:/root/templates
|
|
- ./data:/root/data
|
|
networks:
|
|
- web
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.ramz-secure.entrypoints=https,http"
|
|
- "traefik.http.routers.ramz-secure.rule=Host(`parker.ramz.cc`)"
|
|
- "traefik.http.routers.ramz-secure.tls.certresolver=http"
|
|
- "traefik.http.services.ramz.loadbalancer.server.port=3333"
|
|
|
|
networks:
|
|
web:
|
|
external: true
|