mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-08 19:10:28 +00:00
33 lines
1.4 KiB
YAML
33 lines
1.4 KiB
YAML
# [Plex](https://plex.tv) organizes video, music and photos from personal media
|
|
# libraries and streams them to smart TVs, streaming boxes and mobile devices.
|
|
# This container is packaged as a standalone Plex Media Server. has always been
|
|
# a top priority. Straightforward design and bulk actions mean getting things
|
|
# done faster.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
plex:
|
|
image: ghcr.io/linuxserver/plex
|
|
container_name: plex
|
|
network_mode: host
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
# Set whether to update plex or not - see Application Setup section.
|
|
- VERSION=docker
|
|
# Optionally you can obtain a claim token from https://plex.tv/claim and input here. Keep in mind that the claim tokens expire within 4 minutes.
|
|
- PLEX_CLAIM= # optional
|
|
volumes:
|
|
# Plex library location. *This can grow very large, 50gb+ is likely for a large collection.*
|
|
- ${BASEDIR:-/volume1/docker}/plex/config:/config
|
|
# Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc.
|
|
- ${BASEDIR:-/volume1/docker}/plex/tv:/tv
|
|
# Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc.
|
|
- ${BASEDIR:-/volume1/docker}/plex/movies:/movies
|
|
restart: unless-stopped
|