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

Summary of Spring Boot Docker packaging tools

Table of contents Spring Boot Docker spring-boot-...

Overview of time configuration under Linux system

1. Time types are divided into: 1. Network time (...

MariaDB-server installation of MySQL series

Table of contents Tutorial Series 1. Install Mari...

How to convert a string into a number in JavaScript

Table of contents 1.parseInt(string, radix) 2. Nu...

How to install and configure WSL on Windows

What is WSL Quoting a passage from Baidu Encyclop...

Mini Program implements list countdown function

This article example shares the specific code for...

Detailed explanation of how to create MySql scheduled tasks in navicat

Detailed explanation of creating MySql scheduled ...

About the implementation of JavaScript carousel

Today is another very practical case. Just hearin...

Detailed process of SpringBoot integrating Docker

Table of contents 1. Demo Project 1.1 Interface P...

5 ways to achieve the diagonal header effect in the table

Everyone must be familiar with table. We often en...

Vue sample code for implementing two-column horizontal timeline

Table of contents 1. Implement the component time...

How to set the position of the block element in the middle of the window

How to set the position of the block element in t...

Detailed explanation of identifying files with the same content on Linux

Preface Sometimes file copies amount to a huge wa...

Why does MySQL paging become slower and slower when using limit?

Table of contents 1. Test experiment 2. Performan...

Example code for element multiple tables to achieve synchronous scrolling

Element UI implements multiple tables scrolling a...