-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
68 lines (66 loc) · 1.66 KB
/
docker-compose.yml
File metadata and controls
68 lines (66 loc) · 1.66 KB
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
version: '2.2'
services:
gluetun:
image: qmcgaw/gluetun:v3.32
container_name: gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 8888:8888/tcp
- 8388:8388/tcp
- 8388:8388/udp
- ${WEBUI_PORT}:${WEBUI_PORT}
volumes:
- ./data/gluetun:/gluetun
environment:
#https://mullvad.net/en/account/#/create/
#https://github.com/qdm12/gluetun/wiki/Mullvad
- VPN_SERVICE_PROVIDER=${VPN_SERVICE_PROVIDER}
- VPN_TYPE=${VPN_TYPE}
- WIREGUARD_PRIVATE_KEY=${WIREGUARD_PRIVATE_KEY}
- WIREGUARD_ADDRESSES=${WIREGUARD_ADDRESSES}
- SERVER_CITIES=${SERVER_CITIES}
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "10"
restart: always
plex:
image: linuxserver/plex:1.29.2
container_name: plex
network_mode: host
environment:
- PUID=1000
- PGID=1000
- VERSION=docker
- PLEX_CLAIM=${PLEX_CLAIM} #https://www.plex.tv/claim
volumes:
- ./data/plex/config:/config
- ./data/plex/cache:/cache
- ./downloads:/downloads
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "10"
restart: always
torrent:
restart: always
container_name: torrent
network_mode: "service:gluetun"
image: linuxserver/qbittorrent:4.4.1
environment:
- PUID=1000
- PGID=1000
- WEBUI_PORT=${WEBUI_PORT}
volumes:
- ./downloads:/downloads
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "10"
restart: always