Docker introduction private notes review and summary 4 - harbor shutdown and startup

Harbor is an enterprise level Docker private warehouse project. It is composed of multiple Docker Containers. The dependencies between containers are managed through Docker compose.1. InstallationPlease refer to the official document for installation: Harbor - Installation and Configuration GuideModify harbor When using YML, you should pay atte ...

Posted by abhi201090 on Thu, 10 Mar 2022 16:03:17 +0100

Install docker and docker compose from the command line in WSL2 (Windows subsystem v2 for Linux)

Note: installing WSL2 requires an operating system: at least Windows 10 1903 (Build 18362).Official installation methodIf you just want to install docker on WSL and use it on windows, it is recommended to refer to the official Microsoft document to install Docker Desktop.address https://docs.microsoft.com/en-us/windows/wsl/tutorials/wsl-contain ...

Posted by sgaron on Thu, 24 Feb 2022 03:10:59 +0100

docker deployment specification - integration with gitlab-ci

docker deployment specification - integration with gitlab-ci This specification is summarized as follows, based on a number of project practices Continuously integrated project directory structure A complete product will contain multiple services, such as web services, java services, python services, etc. And the code for each service co ...

Posted by iceblox on Mon, 31 Jan 2022 18:43:36 +0100

Docker Compose exercise: voting App

Docker Compose classic example: Example Voting App GitHub address: https://github.com/dockersamples/example-voting-app For students with poor network, I have downloaded the source code, address: https://download.csdn.net/download/weixin_48447848/77354937 Example Voting App Simple distributed applications running across multiple Docker conta ...

Posted by dhimok on Tue, 25 Jan 2022 01:22:18 +0100

Discussion on the startup sequence of Docker Compose - springboot actual e-commerce project mall4j

springboot e-commerce project mall4j( https://gitee.com/gz-yami/mall4j)java mall system source codeThe following discussion is based on the V2 version of Docker Compose:Now container choreography is widely used. We are using docker Compose for website deployment. In the process of deployment, Mysql, Redis, JAVA back-end programs and PHP back-en ...

Posted by JeDi58 on Mon, 03 Jan 2022 19:52:47 +0100

Docker Compose quick start

Docker Compose brief introduction In the docker we learned earlier, we operate a single container, and Dockerfile build is operated manually. In the case of microservices, 100 microservices! If you use manual operation one by one, it is also very troublesome. Therefore, Docker Compose can easily and efficiently manage containers and defin ...

Posted by richei on Mon, 03 Jan 2022 19:20:33 +0100

Composite multiplatform supporting PC, Web and Android enters Alpha version

The release of Compose Multiplatform marks a new step forward in developing unified UI support using Kotlin! Based on Google released Jetpack Compose Android 1.0 stable Premise: Compose for Desktop and Compose for Web have been upgraded to "Alpha" version. Their version control is now consistent under Compose Multiplatform, so that ...

Posted by rbeschizza on Tue, 28 Dec 2021 10:41:24 +0100

Docker from getting started to practice series 4 - docker container choreographer Docker Compose

Introduction to Compose concept Docker Compose project is the official open source project of docker, which comes from the previous Fig project. It is responsible for the rapid arrangement of docker container clusters. The project address is: https://github.com/docker/compose/releases It is a docker application tool that defines and runs ...

Posted by reckdan on Mon, 27 Dec 2021 14:52:34 +0100

How to deploy a project with Docker Compose?

[TOC]prefacePreviously, we deployed springboot, redis and mysql projects with docker, but they are deployed in three different containers. We also need to know the ip addresses of redis and mysql and manually configure them into the springboot application container. I just want to test them locally quickly. This cost is too high. Is there any w ...

Posted by phamenoth on Tue, 21 Dec 2021 22:33:29 +0100

harbor warehouse construction and docker compose syntax

harbor warehouse construction and docker compose syntax Harbor Whether you use docker distribution to build your own warehouse or run the container through the official image, we can find that it is very simple through the previous demonstration. It is not as convenient as directly using the official Docker Hub to manage the image. At lea ...

Posted by MinDFreeZ on Thu, 16 Dec 2021 13:58:26 +0100