Docker Compose是一种编排服务,基于pyhton语言实现,是一个用于在 Docker 上定义并运行复杂应用的工具,可以让用户在集群中部署分布式应用。用户可以很容易地用一个配置文件定义一个多容器的应用,然后使用一条指令安装这个应用的所有依赖,完成构建。
解决了容器与容器之间如何管理编排的问题。
Docker Compose 中有两个重要的概念:
服务 (service) :一个应用的容器,实际上可以包括若干运行相同镜像的容器实例。
项目 (project) :由一组关联的应用容器组成的一个完整业务单元,在 docker-compose.yml 文件中定义。
与docker-machine类似将二进制包移动到/usr/local/bin/docker-compose即可
用户在命令行输入命令后,系统会在环境变量$PATH
内找命令。
家目录下创建项目目录
mkdir compose
编写主配置文件,docker-compose在up的时候会自动读取
cat docker-compose.yml
version: "3.8" services: web1: image: nginx networks: - webnet lumes: - ./web1:/usr/share/nginx/html #挂载数据卷为nginx默认发布文件 web2: image: nginx networks: - webnet lumes: - ./web2:/usr/share/nginx/html #挂载数据卷为nginx默认发布文件 haproxy: image: haproxy networks: - webnet volumes: - ./haproxy:/usr/local/etc/haproxy #数据卷为haproxy需要修改的主配置文件 ports: - "80:80" #端口映射本机的80端口映射容器内的80端口 networks: webnet: #网络连接方式为webnet
创建haproxy目录并编辑修改haproxy.cfg的主配置文件
cat haproxy/haproxy.cfg
# # This is a sample configuration. It illustrates how to separate static objects # traffic from dynamic traffic, and how to dynamically regulate the server load. # # It listens on 192.168.1.10:80, and directs all requests for Host 'img' or # URIs starting with /img or /css to a dedicated group of servers. URIs # starting with /admin/stats deliver the stats page. # global maxconn 65535 stats socket /var/run/haproxy.stat mode 600 level admin log 127.0.0.1 local0 uid 200 gid 200 daemon defaults mode http log global option httplog option dontlognull monitor-uri /monitoruri maxconn 8000 timeout client 30s retries 2 option redispatch timeout connect 5s timeout server 5s stats uri /admin/stats # The public 'www' address in the DMZ frontend public bind *:80 name clear #监听所有ip的80端口 #bind 192.168.1.10:443 ssl crt /etc/haproxy/haproxy.pem #use_backend static if { hdr_beg(host) -i img } #use_backend static if { path_beg /img /css } default_backend dynamic # The static backend backend for 'Host: img', /img and /css. backend dynamic balance roundrobin server a web1:80 check inter 1000 server b web2:80 check inter 1000
查看默认发布文件内容
cat web1/index.html web1 cat web2/index.html web2
查看~/compose结构
tree ~/compose
启动服务,-d打入后台
docker-compose up -d
查看compose进程状态,全为up表示状态健康
docker-compose ps
访问测试
curl 172.25.9.1
容器内haproxy+nginx负载均衡配置完成。