Files
Docker-Compose/Docker GUI Managers/Dokemon

Source: https://github.com/productiveops/dokemon

I no longer recommend Dokemon. It is fine, but after learning Portainer, Portainer is much better. I agree that there is more of a learning curve to Portainer, so I think Dockge is even easier to learn and use than Dokemon.

Must have Docker installed: https://wiki.gabesville.com/books/docker/page/install-docker

Run the following commands(can copy and paste whole thing since \ at end of each line causes new line in terminal):

sudo mkdir /home/$USER/Docker Volumes && \

sudo docker run -p 9091:9090 \
    -v /home/$USER/Docker Volumes:/data \
    -v /var/run/docker.sock:/var/run/docker.sock \
    --restart unless-stopped \
    --name dokemon -d productiveops/dokemon:latest

Go to http://IPADDRESS:9091 to access

If firewall(UFW) is configured/enabled you will need to allow port 9091