大家好,今天分享一下docker Compose
我们首先要知道,docker Compose是干什么的
在我们之前的那些操作,就是使用dockerfile 文件来启动单个容器
那如果我们需要启动200个 甚至更多的容器,使用以前的方法,它的效率就很低了
使用docker Compose 可以轻松高效的管理容器.定义运行的多个容器
这里可以看
这是Compose的官方文档
这里我写了链接,点一下就可以了
点这个链接,进入compose的官方文档
这是官方的解释
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 of Compose, see the list of features.
Compose works in all environments: production, staging, development, testing, as well as CI workflows. You can learn more about each case in Common Use Cases.
Using Compose is basically a three-step process:
Define your app’s environment with a Dockerfile so it can be reproduced anywhere.
Define the services that make up your app in docker-compose.yml so they can be run together in an isolated environment.
Run docker compose up and the Docker compose command starts and runs your entire app. You can alternatively run docker-compose up using the docker-compose binary.
A docker-compose.yml looks like this:
这是我使用翻译软件对其关键部分进行的中文翻译
*Compose是一个用于定义和运行多容器Docker应用程序的工具。使用Compose,您可以使用YAML文件来配置应用程序的服务。然后,只需一个命令,就可以从配置中创建并启动所有服务。要了解有关Compose的所有功能的更多信息,请参阅功能列表。
1.定义和运行多个容器
Compose适用于所有环境:生产、登台、开发、测试以及CI工作流。您可以在常见用例中了解更多关于每个用例的信息。
使用Compose基本上分为三步:
使用Dockerfile定义应用程序的环境,以便可以在任何地方复制。
在docker compose中定义构成应用程序的服务。因此,它们可以在一个孤立的环境中一起运行。
运行docker compose up,docker compose命令启动并运行整个应用程序。也可以使用docker compose二进制文件运行docker compose up。
码头工人。yml看起来像这样:*
看这段话下面的一段内容(这是实际操作的三个步骤)
使用Compose基本上分为三步:
使用Dockerfile定义应用程序的环境,以便可以在任何地方复制。
在docker compose中定义构成应用程序的服务。因此,它们可以在一个孤立的环境中一起运行。
运行docker compose up,docker compose命令启动并运行整个应用程序。也可以使用docker compose二进制文件运行docker compose up。
总之,docker Compose的作用: 就是对多个容器进行批量编排
Compose是docker官方的开源项目
这是官方的yaml 文件
version: "3.9" # optional since v1.27.0
services:
web:
build: .
ports:
- "8000:5000"
volumes:
- .:/code
- logvolume01:/var/log
links:
- redis
redis:
image: redis
volumes:
logvolume01: {}
我们就是通过编辑这个文件来实现对多个容器进行编排
docker- Compose up 多个容器
服务service: 容器 应用
项目:project 相关联的容器
好了,有关于docker Compose的介绍 就到这里了,谢谢大家