Skip to content

Latest commit

 

History

History
executable file
·
24 lines (17 loc) · 869 Bytes

README.md

File metadata and controls

executable file
·
24 lines (17 loc) · 869 Bytes

This is a Dockerfile setup for couchpotato - https://couchpota.to/

By default this Docker installs the latest stable version of CouchPotato:

docker run -d --net="host" --name="couchpotato" -v /path/to/couchpotato/data:/config -v /path/to/downloads:/downloads -v /path/to/movies:/movies -v /etc/localtime:/etc/localtime:ro -p 5050:5050 needo/couchpotato

Edge

If you would like to run the latest updates from the master branch as well as enable in-app updates run:

docker run -d --net="host" --name="couchpotato" -v /path/to/couchpotato/data:/config -v /path/to/downloads:/downloads -v /path/to/movies:/movies -v /etc/localtime:/etc/localtime:ro -e EDGE=1 -p 5050:5050 needo/couchpotato

Docker compose

To run plex with docker-compose clone the repository and run:

docker-compose up -d