Compare commits

..

No commits in common. "cea4680240fbcefa1b7ee5686462dbedcea12a19" and "0512e4d335de4f5eeff17797858c522e06f8b19f" have entirely different histories.

3 changed files with 24 additions and 40 deletions

View file

@ -69,26 +69,7 @@ services:
- "traefik.docker.network=web" - "traefik.docker.network=web"
- "docker.group=monitoring" - "docker.group=monitoring"
uptime-kuma:
image: louislam/uptime-kuma:1
volumes:
- ${VOLUMES_PATH}/monitoring/uptime-kuma-data:/app/data
networks:
- web
- dockersocket
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.uptimekuma.rule=Host(`uptime.${DOMAIN}`)"
- "traefik.http.routers.uptimekuma.entrypoints=web"
- "traefik.http.services.uptimekuma.loadbalancer.server.port=3001"
- "traefik.docker.network=web"
- "docker.group=monitoring"
networks: networks:
monitoring: monitoring:
web: web:
external: true external: true
dockersocket:
external: true

View file

@ -14,4 +14,3 @@ up download;
up portainer; up portainer;
up torrent; up torrent;
up print; up print;
up media;

View file

@ -1,28 +1,32 @@
services: services:
qbittorrent:
transmission: image: linuxserver/qbittorrent
image: lscr.io/linuxserver/transmission:${TRANSMISSION_VERSION}
environment: environment:
- TZ=Etc/UTC # - PUID=1000
- USER=${USERNAME} # - PGID=1000
- PASS=${PASSWORD} - TZ=Europe/Berlin
- WEBUI_PORT=8090
volumes: volumes:
- ${VOLUMES_PATH}/torrent/transmission:/config - ${VOLUMES_PATH}/torrent:/config
- ${DOWNLOAD_PATH}:/downloads - ${DOWNLOAD_PATH}/:/downloads
- ${DOWNLOAD_PATH}/watch:/watch ports:
- 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=9091" - "traefik.http.services.torrent.loadbalancer.server.port=8090"
- "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: