Plex Media Server running inside docker
-
Install Docker.
-
Download docker image from public Docker Hub Registry:
docker pull ekiourk/plex
(alternatively, you can build an image from Dockerfile:
docker build -t plex github.com/ekiourk/docker-plex
)
Run the following command and then visit http://localhost:32400/web on a browser
docker run -it -p 32400:32400 ekiourk/plex
-
Go to the directory where your media files are located.
-
Run
docker run -it -d --net="host" -p 32400:32400 -v /docker-plex:/Library -v $PWD:/data ekiourk/plex
Inside /docker-plex will be persist all the plex media server configuration files.
Assuming that your media files are on /home/Videos. Run the script by passing the path of the media directory
./run.sh /home/Videos