commit b1858c2861f77eb89f4e1091496b5062fd4c1f4a Author: Matt Speer Date: Sat Dec 20 13:24:38 2025 -0600 initial commit 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 +