QBittorrent -> Transmission 4.0
This commit is contained in:
parent
502db16165
commit
cea4680240
1 changed files with 20 additions and 24 deletions
|
@ -1,32 +1,28 @@
|
||||||
services:
|
services:
|
||||||
qbittorrent:
|
|
||||||
image: linuxserver/qbittorrent
|
transmission:
|
||||||
|
image: lscr.io/linuxserver/transmission:${TRANSMISSION_VERSION}
|
||||||
environment:
|
environment:
|
||||||
# - PUID=1000
|
- TZ=Etc/UTC
|
||||||
# - PGID=1000
|
- USER=${USERNAME}
|
||||||
- TZ=Europe/Berlin
|
- PASS=${PASSWORD}
|
||||||
- WEBUI_PORT=8090
|
|
||||||
volumes:
|
volumes:
|
||||||
- ${VOLUMES_PATH}/torrent:/config
|
- ${VOLUMES_PATH}/torrent/transmission:/config
|
||||||
- ${DOWNLOAD_PATH}/:/downloads
|
- ${DOWNLOAD_PATH}:/downloads
|
||||||
ports:
|
- ${DOWNLOAD_PATH}/watch:/watch
|
||||||
- 6881:6881
|
|
||||||
- 6881:6881/udp
|
|
||||||
# - 8090:8090
|
|
||||||
networks:
|
networks:
|
||||||
- web
|
- web
|
||||||
|
ports:
|
||||||
|
# - 9091:9091
|
||||||
|
- 51413:51413
|
||||||
|
- 51413:51413/udp
|
||||||
|
restart: unless-stopped
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.torrent.rule=Host(`torrent.${DOMAIN}`)"
|
- "traefik.http.routers.torrent.rule=Host(`torrent.${DOMAIN}`)"
|
||||||
- "traefik.http.routers.torrent.entrypoints=web"
|
- "traefik.http.routers.torrent.entrypoints=web"
|
||||||
- "traefik.http.services.torrent.loadbalancer.server.port=8090"
|
- "traefik.http.services.torrent.loadbalancer.server.port=9091"
|
||||||
- "traefik.http.services.torrent.loadbalancer.passhostheader=false"
|
|
||||||
- "traefik.http.middlewares.torrentHeader.headers.customRequestHeaders.X-Frame-Options=SAMEORIGIN"
|
|
||||||
- "traefik.http.middlewares.torrentHeader.headers.customRequestHeaders.Referer="
|
|
||||||
- "traefik.http.middlewares.torrentHeader.headers.customRequestHeaders.Origin="
|
|
||||||
- "traefik.http.routers.torrent.middlewares=torrentHeader"
|
|
||||||
- "docker.group=torrent"
|
- "docker.group=torrent"
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
web:
|
web:
|
||||||
|
|
Loading…
Reference in a new issue