A Docker web manager using Python and JavaScript. You can manage your containers using this web UI.
361
Hello Everyone,
I create a #DockerDesktop using #Python and #JavaScript. 🤭 Sounds interesting, right? That's true, I actually made it and named it Docker #Web #UI. I know there are lots of professional #container managers there, but it is a simple, secure, and easy-to-manage #application to manage your containers.
What can you actually do?
You can list all your containers, start them, stop them, remove them, and also you can remove the image as well.
Does it solve any issues? It will help you to see unused #images and containers that have been idle 😴 or running unnecessarily for a long time.
How to Install and Prerequisites?
The prerequisite is that you must have #Docker installed 😁 because I already built the image and made it available in #DockerHub.
So run the following command:
Option 1: [defaults: port 5000, user: admin, password:admin123]
docker run -p 5000:5000 -v /var/run/docker.sock:/var/run/docker.sock tariqul2h2/dockerwebui
Option 2: [#DIY]
docker run -d -p 5000:5000 -v /var/run/docker.sock:/var/run/docker.sock -e ADMIN_USER=superuser -e ADMIN_PASS=superpass -e PORT=5000 tariqul2h2/dockerwebui:latest
You might ask me, why #security? I don't want anyone to delete your #containers for fun, and also you can run on any #server and be able to access it from another server. I will try to update it from time to time. 😇
Now visit localhost:5000 or ip:5000 from any of your #browsers.
I am open to suggestions to make further improvements on this. Feel free to contribute to GitHub.
DemoVideo: https://youtu.be/xvSfSJsKIfQ
Github Repo: https://github.com/Tariqul2h2/dockerwebui
Content type
Image
Digest
sha256:8d9e2b5c4…
Size
49.5 MB
Last updated
about 1 year ago
docker pull tariqul2h2/dockerwebui