-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
73 lines (71 loc) · 1.84 KB
/
docker-compose.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: "3.7"
services:
pia:
image: qmcgaw/private-internet-access:latest
restart: always
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun
network_mode: bridge
init: true
ports:
- "8112:8112"
- "5050:5050"
- "8000:8000"
environment:
- VPNSP=private internet access
- PIA_ENCRYPTION=strong
- PROTOCOL=udp
- PORT_FORWARDING=on
- PORT_FORWARDING_STATUS_FILE=/gluetun/forwarded_port
- NONROOT=no
- DOT=on
- BLOCK_MALICIOUS=on
- BLOCK_SURVEILLANCE=on
- FIREWALL=on
- EXTRA_SUBNETS=192.168.0.0/24
- TZ=America/New_York
env_file:
- ./.pia.env
volumes:
- pia:/gluetun
deluge:
image: linuxserver/deluge:latest
restart: unless-stopped
network_mode: "service:pia"
environment:
- PUID=113
- PGID=1001
- UMASK_SET=002
- TZ=America/New_York
volumes:
- ./deluge/config:/config
- ./deluge/trigger-decompress.sh:/usr/local/bin/trigger-decompress.sh:ro
- ./deluge/downloads:/downloads
- /media/raid/videos:/videos
- pia:/pia:ro
flexget:
image: cpoppema/docker-flexget:latest
restart: unless-stopped
network_mode: "service:pia"
environment:
- PUID=112
- PGID=1001
- TZ=America/New_York
- TORRENT_PLUGIN=deluge
- FLEXGET_LOG_LEVEL=info
- FLEXGET_SERIES_SHOW_SORTBY_FIELD=identifier
volumes:
- ./flexget:/config
- ./flexget/99-install-other-deps:/etc/cont-init.d/99-install-other-deps:ro
- ./dbox/dropbox/Flexget/db-config.sqlite:/config/db-config.sqlite
- ./dbox/dropbox/Flexget/secretfile.yml:/config/secretfile.yml:ro
- ./deluge/downloads:/downloads:ro
- /media/raid/videos:/videos
- torrents:/torrents
volumes:
pia:
torrents:
external:
name: nextcloud_torrents