mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-01-18 16:25:35 +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
|