CouchPotato - the internet movie PVR for usenet and torrents.
657
This is a Docker image for CouchPotato - the awesome movie PVR for usenet and torrents.
The Docker image currently supports:
root)To run the CouchPotato container you can execute:
docker run --name couchpotato -v <datadir path>:/datadir -v <media path>:/media -p 5050:5050 couchpotato/couchpotato
Open a browser and point it to http://my-docker-host:5050
You can also run the CouchPotato container by using Docker Compose.
If you've cloned the git repository you can build and run the Docker container locally (without the Docker Hub):
docker-compose up -d
If you want to use the Docker Hub image within your existing Docker Compose file you can use the following YAML snippet:
couchpotato:
image: "couchpotato/couchpotato"
container_name: "couchpotato"
volumes:
- "<datadir path>:/datadir"
- "<media path>:/media"
ports:
- "5050:5050"
restart: always
Please mount the following volumes inside your CouchPotato container:
/datadir: Holds all the CouchPotato data files (e.g. config, postProcessing)/media: Directory for moviesBy default the CouchPotato configuration is located on /datadir/config.ini.
If you want to change this you've to set the CONFIG environment variable, for example:
CONFIG=/datadir/couchpotato.ini
By default CouchPotato runs with user ID and group ID 666.
If you want to run CouchPotato with different ID's you've to set the CP_UID and/or CP_GID environment variables, for example:
CP_UID=1234
CP_GID=1234
Content type
Image
Digest
Size
123.4 MB
Last updated
about 7 years ago
docker pull dbarton/couchpotato