qbittorrent-docker-compose.yml
· 584 B · YAML
Surowy
version: '3.9'
services:
qbt:
container_name: qbittorrent-nox-seeding
image: qbittorrentofficial/qbittorrent-nox
# restart: "no"
restart: unless-stopped
ports:
# web ui port
- 28211:28211/tcp
# for bittorrent traffic
- 54701:54701/tcp
- 54701:54701/udp
environment:
- TZ=Asia/Shanghai
- UMASK_SET=022
- QBT_EULA=accept
- QBT_VERSION=latest
- QBT_WEBUI_PORT=28211
tty: true
stop_grace_period: 30m
tmpfs:
- /tmp
volumes:
- ./config:/config:rw
- ./storage:/storage:rw
| 1 | version: '3.9' |
| 2 | services: |
| 3 | qbt: |
| 4 | container_name: qbittorrent-nox-seeding |
| 5 | image: qbittorrentofficial/qbittorrent-nox |
| 6 | # restart: "no" |
| 7 | restart: unless-stopped |
| 8 | ports: |
| 9 | # web ui port |
| 10 | - 28211:28211/tcp |
| 11 | # for bittorrent traffic |
| 12 | - 54701:54701/tcp |
| 13 | - 54701:54701/udp |
| 14 | environment: |
| 15 | - TZ=Asia/Shanghai |
| 16 | - UMASK_SET=022 |
| 17 | - QBT_EULA=accept |
| 18 | - QBT_VERSION=latest |
| 19 | - QBT_WEBUI_PORT=28211 |
| 20 | tty: true |
| 21 | stop_grace_period: 30m |
| 22 | tmpfs: |
| 23 | - /tmp |
| 24 | volumes: |
| 25 | - ./config:/config:rw |
| 26 | - ./storage:/storage:rw |