Added thelounge Added watchtower Added authentik Moved excalidraw behind authentik SSO Removed unused services
81 lines
2.6 KiB
YAML
81 lines
2.6 KiB
YAML
services:
|
|
cross-seed:
|
|
image: ghcr.io/cross-seed/cross-seed:6
|
|
container_name: cross-seed
|
|
user: 1029:1000 # this must match your torrent client (cross-seed does not support using PGID and PUID)
|
|
ports:
|
|
- "2468:2468"
|
|
volumes:
|
|
- /home/fejy/docker/cross-seed:/config
|
|
- /mnt/LUXURIA/Share:/Share
|
|
command: daemon
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.cross-seed.rule=Host(`cross-seed.nearfuture`)"
|
|
- "traefik.http.routers.cross-seed.entrypoints=web"
|
|
- "com.centurylinklabs.watchtower.scope=watch"
|
|
|
|
cross-seed2:
|
|
image: ghcr.io/cross-seed/cross-seed:6
|
|
container_name: cross-seed2
|
|
user: 1029:1000 # this must match your torrent client (cross-seed does not support using PGID and PUID)
|
|
ports:
|
|
- "2469:2468"
|
|
volumes:
|
|
- /home/fejy/docker/cross-seed2:/config
|
|
- /mnt/LUXURIA/Share:/Share
|
|
command: daemon
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.cross-seed2.rule=Host(`cross-seed2.nearfuture`)"
|
|
- "traefik.http.routers.cross-seed2.entrypoints=web"
|
|
- "com.centurylinklabs.watchtower.scope=watch"
|
|
|
|
cross-seed3:
|
|
image: ghcr.io/cross-seed/cross-seed:6
|
|
container_name: cross-seed3
|
|
user: 1029:1000 # this must match your torrent client (cross-seed does not support using PGID and PUID)
|
|
ports:
|
|
- "2470:2468"
|
|
volumes:
|
|
- /home/fejy/docker/cross-seed3:/config
|
|
- /mnt/AVARITIA/Share:/Avaritia/Share/
|
|
command: daemon
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.cross-seed3.rule=Host(`cross-seed3.nearfuture`)"
|
|
- "traefik.http.routers.cross-seed3.entrypoints=web"
|
|
- "com.centurylinklabs.watchtower.scope=watch"
|
|
|
|
cross-seed-priv:
|
|
image: ghcr.io/cross-seed/cross-seed:6
|
|
container_name: cross-seed-priv
|
|
user: 1029:1000 # this must match your torrent client (cross-seed does not support using PGID and PUID)
|
|
ports:
|
|
- "2471:2468"
|
|
volumes:
|
|
- /home/fejy/docker/cross-seed-priv:/config
|
|
- /mnt/LUXURIA/Private:/mnt/LUXURIA/Private
|
|
command: daemon
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.cross-seed-priv.rule=Host(`cross-seed-priv.nearfuture`)"
|
|
- "traefik.http.routers.cross-seed-priv.entrypoints=web"
|
|
- "com.centurylinklabs.watchtower.scope=watch"
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|