Docker Compose
简介
目前我们使用 Docker 的时候,需要定义 Dockerfile 文件,然后使用 docker build、docker run 等命令操作容器。
微服务项目中有100个微服务!如果有问题重新启动非常麻烦。
- 使用 Docker Compose 可以轻松、高效的管理容器,它是一个用于定义和运行多容器 Docker 的应用程序工具
官方介绍
定义、运行多个容器
YAML file 配置文件
single command。 命令有哪些?
Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file toconfigure your application’s services. Then, with a single command, you create and start all the services from yourconfiguration.To learn more about all the features of Compose, see the list of features.
Compose works inall environment: production,staging , development, testing, as well as Cl workflows. You can learn moreabout 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.Dockerfile 保证我们的项目可以在任何地方运行。
-
Define the services that make up your app in
docker-compose.yml
so they can be run together in an isolated environment.services 什么是服务
docker-compose.yml 这个文件怎么写!
-
Run
docker-compose up
and Compose starts and runs your entire app.启动项目
作用: 批量容器编排
Dockerfile让程序在任何地方运行。web服务。redis、mysql、nginx …多个容器。run
version: '2.0'
services:
web :
buil1d: .
ports :
- "5000:5000"
volumes :
- .:/code
- logvolume01 : /var/log
links :
- redis
redis :
image: redis
volumes :
logvolume01:{}
docker-compose up 100 个服务
Compose:重要的概念
- 服务services,容器。应用。(web、redis、mysql…)
- 项目project。 一组关联的容器
安装compose
1、下载
#官方
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
#国内镜像下载
curl -l "https://get.daocloud.io/docker/compose/releases/download/1.25.5/docker-compose-$(uname -s)-$(uname -m)" > /usr/local/bin/docker-compose
- 授权
sudo chmod +x docker-compose
#使用docker-compose version查看是否开启成功
官方示例
- 编写应用文件 app.py
import time
import redis
from flask import Flask
app = Flask(__name__)
cache = redis.Redis(host='redis', port=6379)
def get_hit_count():
retries = 5
while True:
try:
return cache.incr('hits')
except redis.exceptions.ConnectionError as exc:
if retries == 0:
raise exc
retries -= 1
time.sleep(0.5)
@app.route('/')
def hello():
count = get_hit_count()
return 'Hello World! I have been seen {} times.\n'.format(count)
创建requirements.txt
flask
redis
- 创建Dockerfile
# syntax=docker/dockerfile:1
FROM python:3.7-alpine
WORKDIR /code
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
RUN apk add --no-cache gcc musl-dev linux-headers
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
EXPOSE 5000
COPY . .
CMD ["flask", "run"]
- 编写 Docker-compose yaml文件(定义整个服务器,需要的环境。wen、redis)
version: "3.9"
services:
web:
build: .
ports:
- "5000:5000"
redis:
image: "redis:alpine"
- 创建和运行 docker-compose
docker-compose up
#后台启动
docker-compose up -d
docker-compose --build 重新构建
docker-compose启动流程
- 创建网络
- 执行Docker-compose
- 启动服务
成功启动。。。
默认的容器名 文件名_服务名 _ num
尝试访问应用,成功。
[root@lxx-server ~]# curl http://127.0.0.1:5000Hello World! I have been seen 1 times.
查看网络,发现创建了一个bridge网络
两容器已加入新建的网络内
如果在同一个网络下,可直接通过域名访问。
5. 停止
1. docker-compose stop/down2. 直接按ctrl+c关闭
yaml 规则
docekr-compose.yaml 核心
# 3 层version: '' #版本services: #服务 服务1: web #服务配置 images build network ... 服务2: redis ...#其他配置volumes:networks:configs: