mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-05 05:37:29 -07:00
23 lines
568 B
Plaintext
23 lines
568 B
Plaintext
version: "3"
|
|
|
|
services:
|
|
plex:
|
|
image: ghcr.io/linuxserver/plex:latest
|
|
container_name: plex
|
|
network_mode: host
|
|
restart: always
|
|
environment:
|
|
- PUID=[[USER_ID]]
|
|
- PGID=[[GROUP_ID]]
|
|
- VERSION=docker
|
|
volumes:
|
|
- /data/persistent/plex/:/config
|
|
- /data/persistent/plex/tvseries:/tv
|
|
- /data/persistent/plex/movies:/movies
|
|
- /data/persistent/plex/photos:/photos
|
|
- /data/persistent/plex/homevideos:/homevideos
|
|
- /data/persistent/plex/transcode:/transcode
|
|
labels:
|
|
- "traefik.enable=false"
|
|
|