This repository has been archived on 2025-07-17. You can view files and clone it, but cannot push or open issues or pull requests.
Files
archived-docker-compose/qbittorrent/docker-compose.yaml
2025-06-05 13:56:57 +05:30

19 lines
420 B
YAML

version: "3.8"
services:
qbittorrent:
image: "linuxserver/qbittorrent:latest"
container_name: "qbittorrent"
environment:
- "PUID=${PUID}"
- "PGID=${PGID}"
- "TZ=${TZ}"
- "WEBUI_PORT=${PORT}"
volumes:
- "${CONFIG_PATH}:/config"
- "${DOWNLOADS}:/downloads"
ports:
- "${PORT}:${PORT}"
- "6881:6881"
- "6881:6881/udp"
restart: "unless-stopped"