Detailed steps for building Portainer visual interface with Docker

Detailed steps for building Portainer visual interface with Docker

In order to solve the problem mentioned last time, I searched online and found a very good visual interface management tool.

What is Portainer (open source and lightweight)

Portainer is a graphical management tool for Docker, which 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 can basically meet all the container management needs of small and medium-sized units.

I used graphical management, rapid application deployment, time log display, and container console operation (because I used it relatively simply and didn’t have much in-depth understanding)

Docker and Windows download images

  • Search docker search portainer
  • Pull docker pull portainer/portainer
  • Start docker run -d -p 9000:9000 --restart=always -v /var/run/docker.sock:/var/run/docker.sock --name prtainer-test portainer/portainer

ps: docker run command explanation

Just visit the browser (127.0.0.1:9000) to access the page to create a new user

-d : run in the background
-p: The front is the external access port: the back is the internal access port
--restart=always: When docker restarts, the container will automatically start.
-v: disk directory mapping
--name: Specify a name for the container

See the browser access (127.0.0.1:9000) to access the page

Create a new user

I chose this machine. There are many modes. Welcome to explore

Bang!

Some basic functions

The above is all the relevant knowledge points about building Portainer with Docker introduced this time. Thank you for your learning and support for 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
  • Installation and usage analysis of Portainer, a visual UI management tool for Docker
  • How to use Portainer to build a visual interface for Docker
  • Use of Docker Portainer visualization panel

<<:  Win10 + Ubuntu 16.04 dual system perfect installation tutorial [detailed]

>>:  MySQL Optimization Solution Reference

Recommend

Introduction to 10 Hooks in React

Table of contents What is ReactHook? React curren...

How to use MySQL stress testing tools

1. MySQL's own stress testing tool - Mysqlsla...

Recommend a cool flashing alarm button

The effect is as follows: The code is as follows ...

Vue directives v-html and v-text

Table of contents 1. v-text text rendering instru...

Remote development with VSCode and SSH

0. Why do we need remote development? When develo...

Html Select option How to make the default selection

Adding the attribute selected = "selected&quo...

Detailed explanation of the execution principle of MySQL kill command

Table of contents Kill instruction execution prin...

jQuery implements navigation bar effect with expansion animation

I designed and customized a navigation bar with a...

Steps to set up and mount shared folders on Windows host and Docker container

Programs in Docker containers often need to acces...

How to configure environment variables in Linux environment

JDK download address: http://www.oracle.com/techn...

Beginners learn some HTML tags (2)

Beginners can learn HTML by understanding some HT...

Tutorial on upgrading from Centos7 to Centos8 (with pictures and text)

If you upgrade in a formal environment, please ba...

Tips for importing csv, excel or sql files into MySQL

1. Import csv file Use the following command: 1.m...