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

How to add a pop-up bottom action button for element-ui's Select and Cascader

As shown in the figure below, it is a common desi...

K3s Getting Started Guide - Detailed Tutorial on Running K3s in Docker

What is k3d? k3d is a small program for running a...

Detailed explanation of how to synchronize data from MySQL to Elasticsearch

Table of contents 1. Synchronization Principle 2....

Detailed explanation of the lock structure in MySQL

Mysql supports 3 types of lock structures Table-l...

Solution to Docker disk space cleaning

Some time ago, I encountered the problem that the...

How to manually upgrade the node version under CentOs

1. Find the corresponding nodejs package, refer t...

Summary of common tool functions necessary for front-end development

1. Time formatting and other methods It is recomm...

In-depth explanation of hidden fields, a new feature of MySQL 8.0

Preface MySQL version 8.0.23 adds a new feature: ...

MySQL database architecture details

Table of contents 1. MySQL Architecture 2. Networ...

Detailed explanation of vue.js dynamic components

:is dynamic component Use v-bind:is="compone...

Tutorial on installing Tomcat server under Windows

1 Download and prepare First, we need to download...

Introduction to ApplicationHost.config (IIS storage configuration area file)

For a newly created website, take ASP.NET MVC5 as...

Docker Compose network settings explained

Basic Concepts By default, Compose creates a netw...