Use of Docker UI, a Docker visualization management tool

Use of Docker UI, a Docker visualization management tool

1. Introduction to DockerUI

DockerUI is based on the Docker API, provides most of the functions equivalent to the Docker command line, and supports container management and image management.

DockerUI display

front page

It shows the current running list of containers, container and image creation time and quantity.

Network associations between containers

Looks fancy, but seems to have little practicality.

Mirror

Mirror list, you can delete and upload new images.

2. DockerUI installation

Install using docker.

(1) Mirror download

[docker@docker ~]$ docker search docker-ui
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
alpine A minimal Docker image based on Alpine Lin... 4286 [OK]    
jenkins Official Jenkins Docker image 3827 [OK]    
registry The Docker Registry 2.0 implementation for... 2209 [OK]    
swarm Swarm: a Docker-native clustering system. 906 [OK]    
Docker in Docker! 826 [OK]    
Fedora Official Docker builds of Fedora 709 [OK]    
hello-world Hello World! (an example of minimal Docker... 655 [OK]    
atcol/docker-registry-ui A web UI for easy private/local Docker Reg... 110 [OK]
swaggerapi/swagger-ui A simple docker container for hosting swagger... 109         
uifd/ui-for-docker A web interface for Docker, formerly known... 89 [OK]
docker-dev Docker is an open source project to pack, ... 80 [OK]    
francescou/docker-compose-ui web interface for Docker Compose 63 [OK]
schickling/swagger-ui Swagger UI 2.2.8 with API_URL, API_KEY and... 49 [OK]
landoop/kafka-topics-ui UI for viewing Kafka Topics config and data... 21 [OK]
jippi/hashi-ui A user interface for the HashiCorp Nomad s... 15          
joxit/docker-registry-ui Docker registry v2 web User Interface 13 [OK]
landoop/schema-registry-ui UI for Confluent's Schema Registry 7 [OK]
purpleworks/fleet-ui Web based UI for fleet 6          
screwdrivercd/ui Screwdriver UI 6 [OK]
dtagdevsec/ui-for-docker ui-for-docker 6 [OK]
mlabouardy/dockerswarm-ui DockerSwarm UI is 100% compatible with the... 5          
quiq/docker-registry-ui Docker Registry UI 2          
hsldevcom/digitransit-ui Digitransit-ui is a mobile friendly user i... 1          
apicurio/apicurio-studio-ui The UI component of the Apicurio Studio ap... 0          
igeolise/docker-uikit uikit 0 [OK]
[docker@docker ~]$ docker pull uifd/ui-for-docker 
Using default tag: latest
latest: Pulling from uifd/ui-for-docker
841194d080c8: Pull complete 
Digest: sha256:fe371ff5a69549269b24073a5ab1244dd4c0b834cbadf244870572150b1cb749
Status: Downloaded newer image for uifd/ui-for-docker:latest

(2) Image operation

[docker@docker ~]$ docker run -it -d --name docker-ui -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock docker.io/uifd/ui-for-docker
0f9a7b32e17dc0314b4aa9484321d123cc7212a90b3c0246eaf5b0d299211d70

Visit: http://192.168.1.200:9000 to enter the docker UI interface.

This is the end of this article about the use of DockerUI, a Docker visual management tool. For more information about Docker visual management tools, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of docker visualization graphics tool portainer
  • 5 super useful open source Docker tools highly recommended
  • Installation and usage analysis of Portainer, a visual UI management tool for Docker
  • Comparison of the advantages and disadvantages of three Docker graphical tools

<<:  SQL function to merge a field together

>>:  CSS3 achieves flippable hover effect

Recommend

Debian virtual machine created by VirtualBox shares files with Windows host

the term: 1. VM: Virtual Machine step: 1. Downloa...

How to reduce memory usage and CPU usage of web pages

Some web pages may not look large but may be very...

Detailed steps for Python script self-start and scheduled start under Linux

1. Python automatically runs at startup Suppose t...

How to implement the singleton pattern in Javascript

Table of contents Overview Code Implementation Si...

Solution for importing more data from MySQL into Hive

Original derivative command: bin/sqoop import -co...

Vue implements a simple shopping cart example

This article shares the specific code of Vue to i...

Detailed explanation of HTML document types

Mine is: <!DOCTYPE html> Blog Garden: <!...

Introduction to Linux system swap space

Swap space is a common aspect of computing today,...

JS asynchronous code unit testing magic Promise

Table of contents Preface Promise chaining MDN Er...

Detailed explanation of the use of Docker commit

Sometimes you need to install certain dependencie...

Vue3 (III) Website Homepage Layout Development

Table of contents 1. Introduction 2. Actual Cases...