22 lines
560 B
YAML
22 lines
560 B
YAML
---
|
|
version: "2.1"
|
|
services:
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:4.5.4
|
|
container_name: mangrana_qbittorrent
|
|
environment:
|
|
- PUID=${USER}
|
|
- PGID=${GROUP}
|
|
- TZ=Europe/Madrid
|
|
- WEBUI_PORT=8080
|
|
volumes:
|
|
- ./config:/config
|
|
- ./scripts:/scripts
|
|
- ${HOST_DATA_FOLDER}:/data
|
|
- ${SD_STORAGE}/incomplete:/incomplete
|
|
ports:
|
|
- ${HOST_WEBUI_PORT}:8080
|
|
- ${HOST_TRANSFERS_PORT}:51413
|
|
restart: unless-stopped
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=false" |