-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
98 lines (92 loc) · 2.43 KB
/
docker-compose.yml
File metadata and controls
98 lines (92 loc) · 2.43 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
version: '2'
services:
nginx-proxy:
image: jwilder/nginx-proxy
container_name: nginx-proxy
restart: always
ports:
- "80:80"
- "443:443"
volumes:
- /mnt/3TO/DockerData/Proxy/certs:/etc/nginx/certs
- /mnt/3TO/DockerData/Proxy/conf.d:/etc/nginx/conf.d
- /var/run/docker.sock:/tmp/docker.sock:ro
samba:
image: dperson/samba
container_name: Samba
restart: always
ports:
- "137:137"
- "139:139"
- "445:445"
volumes:
- /mnt:/mnt
command: -n -s "public;/mnt;yes;no;yes" -w "<workgroup>"
mysql:
image: mysql
container_name: MySQL
restart: always
ports:
- "3306:3306"
volumes:
- /mnt/3TO/DockerData/MySQL/config:/etc/mysql/conf.d
- /mnt/3TO/DockerData/MySQL/Data:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=RebOOt007
transmission:
image : zaraki673/docker-transmission
container_name: transmission
restart: always
ports:
- "12345:12345"
- "12345:12345/udp"
- "9091:9091"
volumes:
- /mnt/1TO/Download:/var/lib/transmission-daemon/downloads
- /mnt/1TO/Download/incomplete:/var/lib/transmission-daemon/downloads/incomplete
environment:
- ADMIN_PASS=RebOOt007
- VIRTUAL_HOST=dl.mydomohome.eu
- VIRTUAL_PORT=9091
sickrage:
image: sickrage/sickrage
container_name: SickRage
restart: always
ports:
- "8081:8081"
volumes:
- /mnt/3TO/DockerData/SickRage:/config
- /mnt/1TO/Download:/downloads
- /mnt/1TO/Multimedia/SeriesTV:/tv
- /etc/localtime:/etc/localtime:ro
environment:
- VIRTUAL_HOST=series.mydomohome.eu
- VIRTUAL_PORT=8081
tvheadend:
image: tobbenb/tvheadend-unstable
container_name: tvheadend
restart: always
ports:
- "9981:9981"
- "9982:9982"
- "5500:5500"
volumes:
- /mnt/3TO/DockerData/tvheadend/config:/config
- /mnt/3TO/DockerData/tvheadend/recordings:/recordings
- /etc/localtime:/etc/localtime:ro
environment:
- VIRTUAL_HOST=tv.mydomohome.eu
- VIRTUAL_PORT=9981
zoneminder:
image: aptalca/zoneminder-1.29
container_name: Zoneminder
privileged: true
restart: always
ports:
- "8082:80"
volumes:
- /etc/localtime:/etc/localtime:ro
- /mnt/3TO/DockerData/ZM/config:/config:rw
environment:
- VIRTUAL_HOST=zm.mydomohome.eu
- VIRTUAL_PORT=8082