-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
66 lines (60 loc) · 1.54 KB
/
Copy pathdocker-compose.yml
File metadata and controls
66 lines (60 loc) · 1.54 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
version: "3.7"
services:
plex:
container_name: plex
restart: unless-stopped
image: plexinc/pms-docker
devices:
- /dev/dri:/dev/dri
privileged: true
network_mode: "host"
volumes:
- ${PLEX_DIR}/config:/config
- ${TRANSCODE_DIR}/transcode:/transcode
- ${MEDIA_DATA}:/media
ports:
- "32400:32400/tcp"
- "3005:3005/tcp"
- "8324:8324/tcp"
- "32469:32469/tcp"
- "1900:1900/udp"
- "32410:32410/udp"
- "32412:32412/udp"
- "32413:32413/udp"
- "32414:32414/udp"
environment:
- TZ=${TZ}
- HOSTNAME="Docker-Plex"
- PLEX_CLAIM=${PLEX_CLAIM}
- PLEX_UID=${PUID}
- PLEX_GID=${PGID}
labels:
# Don't auto update
- com.centurylinklabs.watchtower.enable="false"
tautulli:
container_name: tautulli
restart: unless-stopped
image: linuxserver/tautulli
depends_on:
- plex
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ${PLEX_DIR}/tautulli:/config
networks:
- traefik-network
labels:
- traefik.enable=true
- traefik.http.routers.tautulli.entrypoints=websecure
- traefik.http.routers.tautulli.rule=Host(`stats.${DOMAIN}`)
- traefik.http.services.tautulli.loadbalancer.server.port=8181
- traefik.http.routers.tautulli.middlewares=basic
- traefik.http.routers.tautulli.tls=true
- traefik.http.routers.tautulli.tls.certresolver=cfdns
networks:
traefik-network:
external: true
default:
driver: bridge