This commit is contained in:
myve 2024-08-10 09:07:11 +00:00
commit e650d80b1e
58 changed files with 1747 additions and 0 deletions

9
qbittorrent/.env Normal file
View file

@ -0,0 +1,9 @@
# Environment file for docker-compose.yaml
# Generate new passwords with:
# openssl rand -hex 32
# Fill in registry
REGISTRY=
# Qbittorrent
QBITTORRENT_PORT=

View file

@ -0,0 +1,27 @@
services:
qbittorrent-nox:
image: ${REGISTRY}/qbittorrent-nox
container_name: qbittorrent-nox
restart: unless-stopped
ports:
- ${QBITTORRENT_PORT:-8080}:8080/tcp
- 6881:6881/tcp
- 6881:6881/udp
environment:
PUID: 1000
PGID: 984
QBT_EULA: accept
QBT_VERSION: latest
QBT_WEBUI_PORT: 8080
stop_grace_period: 30m
tty: true
volumes:
- ./config:/config
- ./downloads:/downloads
networks:
- qbittorrent
networks:
qbittorrent:
external: false