21 lines
615 B
YAML
21 lines
615 B
YAML
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
qbittorrent:
|
||
|
image: lscr.io/linuxserver/qbittorrent:latest
|
||
|
container_name: qbittorrent
|
||
|
environment:
|
||
|
- PUID=1002
|
||
|
- PGID=100
|
||
|
- TZ=Europe/Vienna
|
||
|
- WEBUI_PORT=8080
|
||
|
volumes:
|
||
|
- /srv/dev-disk-by-uuid-cda15581-b397-4ab7-8698-acea81fc1e9c/qbittorrent/config:/config
|
||
|
- /srv/dev-disk-by-uuid-fa1e36be-9ccc-4549-8734-fe6117b30317/croni/andre/andre/Archive:/croni
|
||
|
- /srv/dev-disk-by-uuid-84816528-0f98-4a92-91e2-fc43b5dc0bb4/Archive:/archive
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
- 6881:6881
|
||
|
- 6881:6881/udp
|
||
|
restart: unless-stopped
|