PyLoad
This commit is contained in:
parent
8a5cf1db17
commit
6c3a0abc7c
1 changed files with 29 additions and 0 deletions
29
pyload/docker-compose.yaml
Normal file
29
pyload/docker-compose.yaml
Normal 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(`pyload.${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
|
Loading…
Reference in a new issue