DockerSwarm UI is 100% compatible with the Docker Remote API and Docker Swarm API
50K+
DockerSwarm UI gives you the ability to manage Docker resources including containers, images, nodes and much more to come.
DockerSwarm UI is 100% compatible with the Docker Remote API and Docker Swarm API.
https://github.com/mlabouardy/dockerswarm-ui
$ docker run -d -p 3000:3000 -v /var/run/docker.sock:/var/run/docker.sock --name dockerswarm-ui mlabouardy/dockerswarm-ui:1.0.0
Open your browser to http://IP_ADDR:3000
Bind mounting the Unix socket into the DockerUI container is much more secure than exposing your docker daemon over TCP.
By default DockerUI connects to the Docker daemon with/var/run/docker.sock. For this to work you need to bind mount the unix socket into the container with -v /var/run/docker.sock:/var/run/docker.sock.
You can use the -e flag to change this socket:
$ docker run -d -p 3000:3000 -e DOCKER_HOST=tcp://IP:2375 --name dockerswarm-ui mlabouardy/dockerswarm-ui:1.0.0
Mohamed Labouardy <[email protected]
If you run into issues, please don't hesitate to find help on the GitHub project.
Content type
Image
Digest
Size
28.8 MB
Last updated
over 10 years ago
docker pull mlabouardy/dockerswarm-ui