-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcompose.yml
More file actions
34 lines (30 loc) · 756 Bytes
/
compose.yml
File metadata and controls
34 lines (30 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: "arr"
x-lockdown: &lockdown
# prevents write access to the image itself
read_only: true
# prevents any process within the container to gain more privileges
security_opt:
- "no-new-privileges=true"
services:
qbittorrent:
image: "11notes/qbittorrent:5.2.0"
<<: *lockdown
environment:
TZ: "Europe/Zurich"
QBITTORRENT_USER_AGENT: "11notes/qbittorrent" # optional
QBITTORRENT_PEER_ID: "-qB11-" # optional
volumes:
- "qbittorrent.etc:/qbittorrent/etc"
- "qbittorrent.var:/qbittorrent/var"
ports:
- "3000:8080/tcp"
- "6881:6881/tcp"
- "6881:6881/udp"
networks:
frontend:
restart: "always"
volumes:
qbittorrent.etc:
qbittorrent.var:
networks:
frontend: