The 1.docker is a very lightweight application container engine, and for better management and use of Docker, the use of web visual management tools seems to be more in line with the needs of most people. Here, I share with you some of the Web tools that I've used: Docker UI, Shipyard, Portainer
Because the fear of their own academic not fine misleading beginners, so I do not use the terminology of professional terms, such as the entire whole is a popular language, even a computer small white, will follow this instructions, to complete the corresponding operation and installation. Before the online also have a lot of posters, they did not understand the real meaning of the cluster, swarm mode and swarm and other concepts of the difference between the random copy of each other blog, leading to the beginner I experienced a large and small pit around the detour. T A t cry
2. First release of three tools.
Portainer:
Shipyard:
Docker UI
3. Installation
①ui for Docker
This is a particularly lightweight web management tool. Features: Interface at a glance, small Baida can quickly start; support for local Docker only; multiple containers can be opened at the same time
Installation process:
Pull Image:
$ docker Pull uifd/ui-for-docker
To run the image:
9000:9000 --privileged-v/var/run/docker.sock:/var/run/docker.sock uifd/ui- for-docker
PS: "Docker run" parameter "Mirror name" is the most basic command to run the image
-D:-detach =true, running in the background
-P: That is,-publish specifies the port to publish, I am personally understood as-port, port mapping, the front port (9000) is the port of the computer, and the latter port is the port of the Docker running container (9000). Can be modified at your own discretion
-privileged: Give this container some permissions to perform other operations
-V: Mount, preceded by a native directory, followed by the virtual directory created by the container execution
Open Browser Input localhost:9000
Run successfully.
After the completion of the use of it, I believe that all of you in the small white big boys can make their own understanding of the ^-^
②shipyard
Originally wanted to stay to write this, because this is more troublesome, then troubled me for several days, then suddenly good. But Portainer also has a problem that needs attention, so let's talk about shipyard first.
Docker Learning (iii) Installing Docker's Web visualization management tool