Installation and usage analysis of Portainer, a visual UI management tool for Docker

Installation and usage analysis of Portainer, a visual UI management tool for Docker

Portainer is an excellent Docker graphical management tool that provides status display panel, rapid deployment of application templates, basic operations of container image network data volumes (including uploading and downloading images, creating containers, etc.), event log display, container console operations, centralized management and operation of Swarm clusters and services, login user management and control, etc. The functions are very comprehensive and the installation is very simple. I recommend it to everyone.

1. Download the Portainer image

Search for portainer images:

[root@iZbp13sno1lc2yxlhjc4b3Z /]# docker search portainer
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
portainer/portainer Making Docker management easy. https://porta… 1580

Download portainer image:

[root@iZbp13sno1lc2yxlhjc4b3Z /]# docker pull portainer/portainer
Using default tag: latest
latest: Pulling from portainer/portainer
d1e017099d17: Pull complete

2. Create a Portainer container

[root@iZbp13sno1lc2yxlhjc4b3Z /]# docker run -d -p 8080:9000 --restart=always -v /var/run/docker.sock:/var/run/docker.sock --name prtainer portainer/portainer
a2276dd283850ba081602ab89ca980003ae8aa7fd0e237f6c0236163998865f0

After the container is created successfully, portainer is installed.

3. Portainer Management Interface

Enter the browser address: http://192.168.2.130:8080 to enter the portainer interface.
For the first login, you need to create a password for the administrator admin. We enter 12345678:

After the password is created, enter the docker connection management interface:

You can choose to manage local and remote Docker options. We installed it on the local machine, directly select Local, and then Connect to enter the management interface:

Continue to click the local entry on the right to enter the container management interface:

As you can see, this management interface is very functional. It has intuitive statistics on images, containers, networks, etc. It can also add, delete, modify and query images and containers, which is very convenient.

Click Containers in the left menu bar to open the container management interface. It has so many functions, it’s amazing! ! !

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of docker visualization graphics tool portainer
  • Deployment and Chinese translation of the docker visualization tool Portainer
  • How to use Portainer to build a visual interface for Docker
  • Detailed steps for building Portainer visual interface with Docker
  • Use of Docker Portainer visualization panel

<<:  How to use mixins in Vue

>>:  HTML table markup tutorial (1): Creating a table

Recommend

How to position the header at the top using CSS sticky layout

Application scenarios: One of the new requirement...

Detailed explanation and examples of database account password encryption

Detailed explanation and examples of database acc...

Summary of 7 types of logs in MySQL

There are the following log files in MySQL: 1: re...

Detailed explanation on how to get the IP address of a docker container

1. After entering the container cat /etc/hosts It...

Several ways to solve the 1px border problem on mobile devices (5 methods)

This article introduces 5 ways to solve the 1px b...

Nexus uses API to operate

Nexus provides RestApi, but some APIs still need ...

Detailed explanation of MySQL phantom reads and how to eliminate them

Table of contents Transaction Isolation Level Wha...

Detailed explanation of HTML tables

Function: data display, table application scenari...

A few things you need to know about responsive layout

1. Introduction Responsive Web design allows a we...

How to Dockerize a Python Django Application

Docker is an open source project that provides an...

In-depth understanding of Vue's method of generating QR codes using vue-qr

Table of contents npm download step (1) Import (2...

Detailed explanation of JavaScript's garbage collection mechanism

Table of contents Why do we need garbage collecti...

How to set up remote access to a server by specifying an IP address in Windows

We have many servers that are often interfered wi...