-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (36 loc) · 1.05 KB
/
docker-compose.yml
File metadata and controls
39 lines (36 loc) · 1.05 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
plex:
image: linuxserver/plex:latest
restart: always
net: host
volumes:
- /data/plex/library:/config
- /nfs/jhnas01/movies:/data/movies:ro
- /nfs/jhnas01b/tv:/data/tvshows:ro
environment:
- PLEXPASS=1
- PUID=1001
- PGID=1001
mariadb:
image: mariadb:latest
restart: always
volumes:
- /data/mysql/lib:/var/lib/mysql
- /data/mysql/etc:/etc/mysql
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=cotgw9AfC6UUq3v3XWFTgtHV
- MYSQL_DATABASE=mythconverg
- MYSQL_USER=mythtv
- MYSQL_PASSWORD=mdL3Qnz42YFATyVa
mythtv-backend:
image: mythtv-backend:latest
build: mythtv-backend
restart: always
links:
- mariadb:db
volumes:
- /data/mythtv:/data
ports:
- "6543:6543"
- "6544:6544"