We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6c81fd commit f8c6fd2Copy full SHA for f8c6fd2
.forgejo/workflows/CD.yml
@@ -72,6 +72,9 @@ jobs:
72
npm)
73
target_host="npm.lan"
74
;;
75
+ plex)
76
+ target_host="plex.lan"
77
+ ;;
78
paperless)
79
target_host="ubu.lan"
80
docker/plex/docker-compose.yml
@@ -0,0 +1,22 @@
1
+services:
2
+ plex:
3
+ image: ghcr.io/linuxserver/plex@sha256:dda062ebde8c619a656f7ed6e6da7885ca7e114536c1e76b1de3e32a57d3597b
4
+ container_name: plex
5
+ network_mode: host
6
+ environment:
7
+ - PUID=1000
8
+ - PGID=1000
9
+ - TZ=Etc/UTC
10
+ - VERSION=docker
11
+ volumes:
12
+ - /docker/appdata/plex/library:/config
13
+ - nas:/data/media
14
+ restart: unless-stopped
15
+
16
+volumes:
17
+ nas:
18
+ driver: local
19
+ driver_opts:
20
+ type: nfs
21
+ o: addr=nas.lan,vers=4,rw
22
+ device: ":/mnt/thePool/thePoolShare/Media"
0 commit comments