pyload -> download

This commit is contained in:
Florian Zirker 2021-03-16 21:55:36 +01:00
parent 1eba1ab486
commit a938fb02fe

View file

@ -0,0 +1,29 @@
version: "3.3"
services:
app:
image: linuxserver/pyload
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- ${VOLUMES_PATH}/pyload:/config
- ${DOWNLOAD_PATH}:/downloads
ports:
- 7227:7227 #optional Thrift Backend
networks:
- web
labels:
- "traefik.enable=true"
- "traefik.http.routers.pyload.rule=Host(`download.${DOMAIN}`)"
- "traefik.http.routers.pyload.entrypoints=web"
- "traefik.http.services.pyload.loadbalancer.server.port=8000"
- "docker.group=selfhost"
restart: unless-stopped
networks:
web:
external: true