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
27 lines
741 B
YAML
27 lines
741 B
YAML
services:
|
|
xbackbone:
|
|
image: lscr.io/linuxserver/xbackbone:latest
|
|
container_name: xbackbone
|
|
restart: unless-stopped
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/New_York
|
|
volumes:
|
|
- ./config:/config
|
|
expose:
|
|
- 443
|
|
networks:
|
|
- web
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.xbackbone.entrypoints=https"
|
|
- "traefik.http.routers.xbackbone.rule=Host(`xb.${DOMAIN}`)"
|
|
- "traefik.http.routers.xbackbone.tls.certresolver=http"
|
|
- "traefik.http.middlewares.xbackbone-header.headers.customRequestHeaders.X-Forwarded-Proto=https"
|
|
- "traefik.http.routers.xbackbone.middlewares=xbackbone-header"
|
|
|
|
networks:
|
|
web:
|
|
external: true
|