mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-01-19 00:35:33 +01:00
17 lines
442 B
YAML
17 lines
442 B
YAML
|
services:
|
||
|
qbittorrent:
|
||
|
image: linuxserver/qbittorrent
|
||
|
container_name: qbittorrent
|
||
|
environment:
|
||
|
- PUID=${PUID}
|
||
|
- PGID=${PGID}
|
||
|
- TZ=${TIMEZONE}
|
||
|
- UMASK_SET=022
|
||
|
- WEBUI_PORT=8183
|
||
|
network_mode: "container:gluetun"
|
||
|
volumes:
|
||
|
- ${APPS_DIR}/qbittorrent/config:/config
|
||
|
- ${DATA_DIR}/downloads:/downloads
|
||
|
- ${APPS_DIR}/qbittorrent/vuetorrent:/vuetorrent
|
||
|
restart: unless-stopped
|