18 lines
548 B
Django/Jinja
18 lines
548 B
Django/Jinja
---
|
|
services:
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrent
|
|
environment:
|
|
- PUID={{ qbittorrent_puid }}
|
|
- PGID={{ qbittorrent_pgid }}
|
|
- TZ={{ timezone }}
|
|
- WEBUI_PORT=8080
|
|
volumes:
|
|
- {{ qbittorrent_config_dir }}:/config
|
|
- {{ qbittorrent_downloads_dir }}:/downloads
|
|
ports:
|
|
- {{ qbittorrent_port_webui }}:8080
|
|
- {{ qbittorrent_port_torrent }}:6881
|
|
- {{ qbittorrent_port_torrent }}:6881/udp
|
|
restart: unless-stopped |