test add plex
This commit is contained in:
parent
c6c81fdf96
commit
f8c6fd22e7
2 changed files with 25 additions and 0 deletions
|
@ -72,6 +72,9 @@ jobs:
|
||||||
npm)
|
npm)
|
||||||
target_host="npm.lan"
|
target_host="npm.lan"
|
||||||
;;
|
;;
|
||||||
|
plex)
|
||||||
|
target_host="plex.lan"
|
||||||
|
;;
|
||||||
paperless)
|
paperless)
|
||||||
target_host="ubu.lan"
|
target_host="ubu.lan"
|
||||||
;;
|
;;
|
||||||
|
|
22
docker/plex/docker-compose.yml
Normal file
22
docker/plex/docker-compose.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
services:
|
||||||
|
plex:
|
||||||
|
image: ghcr.io/linuxserver/plex@sha256:dda062ebde8c619a656f7ed6e6da7885ca7e114536c1e76b1de3e32a57d3597b
|
||||||
|
container_name: plex
|
||||||
|
network_mode: host
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
- VERSION=docker
|
||||||
|
volumes:
|
||||||
|
- /docker/appdata/plex/library:/config
|
||||||
|
- nas:/data/media
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
nas:
|
||||||
|
driver: local
|
||||||
|
driver_opts:
|
||||||
|
type: nfs
|
||||||
|
o: addr=nas.lan,vers=4,rw
|
||||||
|
device: ":/mnt/thePool/thePoolShare/Media"
|
Loading…
Add table
Reference in a new issue