inital commit

This commit is contained in:
decherma 2022-02-17 00:28:03 +01:00
commit b298b6c445
2 changed files with 19 additions and 0 deletions

4
Readme.md Normal file
View File

@ -0,0 +1,4 @@
# plex server
https://opensourcegeeks.net/installing-plex-on-a-raspberry-pi-with-docker-and-ubuntu

15
docker-compose.yml Normal file
View File

@ -0,0 +1,15 @@
version: "2"
services:
plex:
image: linuxserver/plex
container_name: plex
network_mode: host
environment:
- PUID=1001
- PGID=1001
- VERSION=docker
volumes:
- /docker/plex/library:/config
- /media/plex/tvseries:/tv
- /media/plex/movies:/movies
restart: always