Sign inSign up

mlabouardy/dockerswarm-ui

By mlabouardy

Updated over 10 years ago

DockerSwarm UI is 100% compatible with the Docker Remote API and Docker Swarm API

Image
5

50K+

mlabouardy/dockerswarm-ui repository overview

DockerSwarm UI

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.

Walkthrough

https://github.com/mlabouardy/dockerswarm-ui

Quickstart

$ 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.

Specify socket to connect to Docker daemon

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

Contributors

Mohamed Labouardy <[email protected]

Help

If you run into issues, please don't hesitate to find help on the GitHub project.

Tag summary

Content type

Image

Digest

Size

28.8 MB

Last updated

over 10 years ago

docker pull mlabouardy/dockerswarm-ui