docker-scripts/qbittorrent/stable/docker-compose.yml

19 lines
433 B
YAML
Raw Normal View History

2019-11-20 17:31:45 +03:00
version: '3.7'
services:
qbittorrent:
image: epicmorg/qbittorrent:latest
restart: always
container_name: qbittorrent
ports:
2019-11-21 02:39:13 +03:00
- "0.0.0.0:8282:8282"
2019-11-20 17:31:45 +03:00
volumes:
- /etc/localtime:/etc/localtime
- /etc/timezone:/etc/timezone
- /etc/letsencrypt:/etc/letsencrypt
- /opt/qbittorrent/profiles:/opt/qbittorrent/profiles
tmpfs:
- /tmp
environment:
- QBT_PROFILE_NAME=docker
2019-11-21 02:39:13 +03:00