Skip to content

Commit f8c6fd2

Browse files
author
Mafyuh
committedJan 8, 2025
test add plex
1 parent c6c81fd commit f8c6fd2

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
 

‎.forgejo/workflows/CD.yml

+3
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ jobs:
7272
npm)
7373
target_host="npm.lan"
7474
;;
75+
plex)
76+
target_host="plex.lan"
77+
;;
7578
paperless)
7679
target_host="ubu.lan"
7780
;;

‎docker/plex/docker-compose.yml

+22
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)
Please sign in to comment.