Docker - docker overview, installation and image operation

Docker overview 1.Docker is an open source application container engine, which is developed based on go language and follows Apache 2.0 0 protocol open source 2.Docker is an open source tool for running applications in Linux container. It is a lightweight "virtual machine" 3.Docker's container technology can easily create a light ...

Added by Crysma on Thu, 10 Mar 2022 13:49:55 +0200

Docker introduction private notes build docker private warehouse VMware's open source warehouse Harbor

Two common image warehouses:Docker official warehouse registryVMware's open source warehouse harbor (built-in registry)harbor Address:https://github.com/goharbor/h...Download address:https://github.com/goharbor/h...harbor is started using docker compose by default. To install docker compose, use Python PIP:yum install python-pip perhaps yum in ...

Added by jnutter on Thu, 10 Mar 2022 13:25:20 +0200

Logging Operator - elegant cloud native log management scheme

Logging Operator is an open source log collection scheme under Banzai cloud under the cloud native scenario. Previously, Xiaobai reprinted an article introduced by boss Cui. However, he had always thought that the architecture of managing Fluent bit and fluent D services simultaneously under a single k8s cluster was bloated, leaving a prelimina ...

Added by weekenthe9 on Wed, 09 Mar 2022 16:11:17 +0200

Creation of Docker image

catalogue 1, Create from an existing image 1.1 first start an image and make modifications in the container 1.2 then submit the modified container as a new image. You need to use the ID number of the container to create a new image 2, Create based on local template 2.1 import as image 3, Create based on Dockerfile Federated file system ( ...

Added by meow on Wed, 09 Mar 2022 10:51:16 +0200

Single sign on service Authelia (Part 2)

advanced setting Authelia Enter Nginx Proxy Manager and find Authelia domain name auth laosu. Ml corresponding Proxy Hosts, enter the editing state, and switch to the Advanced interface Paste the following code in Custom Nginx Configuration location / { set $upstream_authelia http://192.168.0.199:9091; # ip and port of Australia ...

Added by Cleibe on Wed, 09 Mar 2022 04:15:39 +0200

Front end applications such as React/Vue are automatically packaged and upgraded through jenkins, and the whole process is demonstrated (more than 10000 words are a little long)

At present, the development environment is managed by the front-end team. There are more and more version distribution projects. I decided to develop a set of jinkens automatic packaging and deployment. After searching online, they are too old or unavailable. After three days of research, I finally completed it and wrote it down and shared it w ...

Added by venkyphp on Wed, 09 Mar 2022 00:35:23 +0200

Fight again k8s (12): upgrade and rollback of Pod under the guidance of Deployment

Upgrade and rollback of Pod When a service in the cluster needs to be upgraded, we need to stop all pods related to the service, then download the new version image and create a new Pod. If the cluster scale is relatively large, this work becomes a challenge, and the way of stopping all and then gradually upgrading will lead to the unava ...

Added by Calamity-Clare on Tue, 08 Mar 2022 16:20:23 +0200

Docker installation docker and basic image container operation

1, Docker introduction Docker is an open source application container engine, which is developed based on go language and follows Apache 2.0 0 protocol open source It is an open source tool for running applications in Linux container Is a lightweight "virtual machine"“ Docker's container technology can easily create a li ...

Added by jerry_louise on Tue, 08 Mar 2022 16:01:08 +0200

Docker series - 05 - getting started & puppeter service

Code corresponding to this document: https://github.com/LiangJunro...Docker series documents: https://github.com/LiangJunro...1, Previous review & PrefaceAfter the above explanation, you must have been deeply impressed by Docker. In this article, we will make a long story short:How to plug a headless browser like puppeter into Docker2, Pupp ...

Added by willieklein on Tue, 08 Mar 2022 03:26:30 +0200

Learn Docker from madness (essence)

Container data volume What is a container data volume Review of docker's concept Package the application and environment into an image! data If the data is in the container, we will delete the container and lose the data! Requirement: data can be persistent Mysql, the container is deleted, delete the database and run! Requirement: MySQL da ...

Added by ragedigital on Mon, 07 Mar 2022 21:48:03 +0200