-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
53 lines (52 loc) · 1.24 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
version: '3'
services:
plex:
image: plexinc/pms-docker
restart: unless-stopped
network_mode: host
environment:
- TZ=${TIMEZONE}
volumes:
- ./volumes/plex/config:/config
- ./volumes/plex/transcode:/transcode
- ./volumes/media:/data
qbittorrent:
image: linuxserver/qbittorrent
restart: unless-stopped
environment:
- TZ=${TIMEZONE}
- UMASK_SET=022
- WEBUI_PORT=8080
volumes:
- ./volumes/qbittorrent/config:/config
- ./volumes/downloads:/downloads
- ./volumes/media:/media
nginx:
image: nginx
restart: unless-stopped
ports:
- 80:80
- 443:443
volumes:
- ./volumes/nginx/html:/usr/share/nginx/html
- ./volumes/nginx/conf.d:/etc/nginx/conf.d
- /etc/letsencrypt/:/etc/letsencrypt
vouch:
image: voucher/vouch-proxy
restart: unless-stopped
volumes:
- ./volumes/vouch/config:/config
- ./volumes/vouch/data:/data
netdata:
image: netdata/netdata
hostname: sysmon.borisa.net # set to fqdn of host
cap_add:
- SYS_PTRACE
security_opt:
- apparmor:unconfined
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- PGID=999