Simple lightweight GUI application for working with Docker!
- Docker
- Operating system:
ubuntu(tested20.04 LTS,22.04 LTS).
I changed the way of installing server-side components. You don't need to install anything on your local machine.
First, you need to pull the docker image:
Note In this readme I used
tagname, which you can find from releases section (e.g 2.4.0).
docker pull abduaziz/docker-dashboard:tagnameNow it is ready to run, but the docker-dashboard needs access to your local docker UNIX socket. Because it cannot get any data from your docker host, from inside of the container (it is an isolated environment). You have to pass your docker socket path through -v.
Note You have to run the docker image on the
2121port because the client-side application listens on this port. Port9001is for the supervisorinet HTTP server, it is optional but if you want, you can expose this port.
docker run -d -p 2121:2121 -p 9001:9001 \
-v /var/run/docker.sock:/var/run/docker.sock \
abduaziz/docker-dashboard:tagnameVisit http://localhost:2121 π
Go to the releases. Download the latest version according to your operating system.
- Ubuntu
sudo dpkg -i docker-dashboard_*.deb
Warning I uploaded
.dmg,.AppImagepackages also, you can test them. But they are not stable!
Clone this repository
$ git clone https://github.com/AbduazizZiyodov/docker-dashboardRunning π
backend(from src/):make run
tests(from parent dir)# install test requirements from test_requirements.txt $ make test
frontend(from src/client)npm start # or ng serve (global)
First, you have to install some system dependencies,rust and cargo, then tauri itself. You can see all instructions from tauir's documentation.
References
- https://tauri.app/v1/guides/getting-started/prerequisites/
- https://tauri.app/v1/guides/getting-started/setup/integrate
- https://tauri.app/v1/guides/development/development-cycle
- https://doc.rust-lang.org/cargo/getting-started/installation.html
You can run client-side (preview) by this command:
cargo tauri devBuild client-side. You should check src/client/src-tauri/target folder:
cargo tauri buildThis project is licensed under the terms of the MIT license.
Author: Abduaziz Ziyodov


