From b1858c2861f77eb89f4e1091496b5062fd4c1f4a Mon Sep 17 00:00:00 2001 From: Matt Speer Date: Sat, 20 Dec 2025 13:24:38 -0600 Subject: [PATCH] initial commit --- README.md | 5 +++++ docker-compose.yaml | 21 +++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 README.md create mode 100644 docker-compose.yaml diff --git a/README.md b/README.md new file mode 100644 index 0000000..24e0976 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Plex Media Server + +## Description + +Plex Media Server is a versatile software that organizes your personal media, such as movies, TV shows, music, and photos, and streams them to your devices. It offers an intuitive interface, remote access, and compatibility with various platforms, making it easy to enjoy your content anywhere. With features like metadata fetching and library management, Plex enhances your media experience effortlessly. \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..5f57e12 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,21 @@ +services: + plex: + image: lscr.io/linuxserver/plex:latest + container_name: plex + network_mode: host + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Chicago + - VERSION=docker + - PLEX_CLAIM= #optional + volumes: + - /home/mattspeer/docker/plex:/config + - /srv/tv:/tv + - /srv/movies:/movies + - /srv/music:/music + - /srv/audiobooks:/audiobooks + ports: + - 32400:32400 + restart: always +