Files
docker-compose-stack/cross-seed/compose.yml

42 lines
1.2 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"
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"
networks:
proxy:
external: true