mirror of
https://git.myvelabs.com/docker/docker-compose.yaml.git
synced 2025-12-17 21:26:17 +00:00
Reboot
This commit is contained in:
parent
b7336a277f
commit
e650d80b1e
58 changed files with 1747 additions and 0 deletions
9
qbittorrent/.env
Normal file
9
qbittorrent/.env
Normal 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=
|
||||
27
qbittorrent/docker-compose.yaml
Normal file
27
qbittorrent/docker-compose.yaml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue