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
Redis introduction and docker compose cluster construction
Redis cluster
https://www.cnblogs.com/ruiyeclub/p/12355073.html
1, Redis related
1. Introduction to Redis
Redis (Remote Dictionary Server), namely remote dictionary service, is an ey value storage system that supports master-slave synchronization. It is an open source log and key value database written in ANSI C language, su ...
Added by ichversuchte on Thu, 27 Jan 2022 17:44:52 +0200
Registered as Linux service, docker deployment, dockerfile, spring boot test monitoring, actor, project remote access, maven's scope tag
1. The project is registered as a Linux service
Can be turned on or off
mvn package
java -jar xxxx.jar
pom plus executable
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<execut ...
Added by Joan Collins on Fri, 17 Dec 2021 22:36:27 +0200
Linux single server deployment redis cluster, sentry cluster
Environmental Science: 1. There is only one Linux server 2. Use docker compose for deployment (the use of docker compose will not be introduced here)
1,docker images
Use redis in your own image
2,docker network ls
View the existing network segment (Note: it must be the same network segment, otherwise it will be inaccessible) You can al ...
Added by ziesje on Fri, 17 Dec 2021 01:13:10 +0200
Docker compose orchestration syntax
1, Foreword
Docker compose has great learning significance in the application of docker container. Docker compose is a sharp tool for integrating and publishing applications. When using docker compose, it is important to know how to arrange the docker compose configuration file.
For the docker compose technology, you can view the official ...
Added by angelkay73 on Thu, 16 Dec 2021 20:43:58 +0200
Docker notes (Advanced) - Docker Compose
Docker Compose
1. Introduction
Official introduction
Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application's services. Then, with a single command, you create and start all the services from your configuration. To learn more about all the features ...
Added by kevski on Mon, 29 Nov 2021 00:59:38 +0200
Common template commands of docker-compose.yml file
Note: when writing docker-compose.yml file, a space should be added after all colons (:) and dashes (-).
1,command
Overrides the default command executed after the container is started
command: echo "hello"
2,container_name
Specifies the container name. The project name will be used by default_ Service name_ Format such as serial number
c ...
Added by paran0id Dan on Tue, 16 Nov 2021 10:25:31 +0200