Source: https://dockhand.pro/
Must have Docker installed: https://wiki.gabesville.com/books/docker/page/install-docker
Run the docker command to install and run Dockhand:
sudo docker run -d -p 3000:3000 --name dockhand --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v /srv/docker/dockhand/dockhand_data:/app/data fnsys/dockhand:latest
Go to http://IPADDRESS:3000 to access
If firewall(UFW) is enabled you may need to allow port 3000 (test first before creating the rule)
For updating:
- CD to location you want the update script created
sudo nano update-dockhand.sh- Copypasta into file:
sudo docker stop dockhand
sleep 10s
sudo docker rm dockhand
sudo docker image rm -f fnsys/dockhand:latest
sleep 10s
sudo docker run -d -p 3000:3000 --name dockhand --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v /srv/docker/dockhand/dockhand_data:/app/data fnsys/dockhand:latest
sudo chmod u+x update-dockhand.sh- to run:
bash update-dockhand.sh