mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-11-10 04:07:26 +01:00
27 lines
545 B
YAML
27 lines
545 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
# qBittorrent
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrent
|
|
profiles:
|
|
- qbittorrent
|
|
restart: on-failure
|
|
depends_on:
|
|
- caddy
|
|
env_file:
|
|
- env/qbittorrent.env
|
|
volumes:
|
|
- qbittorrent_config:/config
|
|
- qbittorrent_data:/downloads
|
|
networks:
|
|
- infra-network
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
volumes:
|
|
qbittorrent_config:
|
|
name: qbittorrent_config
|
|
qbittorrent_data:
|
|
name: qbittorrent_data |