Dockerfile for manage-this-node
-
Install Docker
-
Make a directory to store the config file and copy the template from the orginal repo, naming it config.json.
-
Run the container, pointing to the directory with the config file. This should now pull the image from Docker hub:
docker run -d -p 3000:3000 \
--name="manage-this-node" \
-v <path to config folder>:/config \
--restart="always" \
chimpchimp/manage-this-node
If you run into a port conflict trying to run on 3000, for example if you're running Plex Requests, it is simple to modify the port forwarding:
-p 3001:3000