为了账号安全,请及时绑定邮箱和手机立即绑定

Docker compose yml文档结构

标签:
AngularJS

介绍

  • Compose是用于定义和运行多容器Docker应用程序的工具。
  • 通过Compose,您可以使用YAML文件来配置应用程序的服务。
  • 使用一个命令,就可以从配置中创建并启动所有服务
  • Compose可在所有环境中工作:生产,登台,开发,测试以及CI工作流

compose 使用步骤:

  • 使用定义您的应用环境,Dockerfile以便可以在任何地方复制它。

  • 定义组成应用程序的服务,docker-compose.yml 以便它们可以在隔离的环境中一起运行。

  • Run docker-compose upand Compose启动并运行您的整个应用程序。

安装

mac os 默认安装

测试

> docker-compose --version
docker-compose version 1.24.1, build 4667896b

docker compose yaml结构

version: "3.7"
services:
 webapp:
   image: webapp:tag
   cap_add:
     - ALL
   cap_drop:
     - NET_ADMIN
     - SYS_ADMIN
   cgroup_parent: m-executor-abcd
   command: bundle exec thin -p 3000
   container_name: my-web-container
   credential_spec:
     config: my_credential_spec
   build:
     context: ./dir  # 相对于yml文件 
     dockerfile: Dockerfile-alternate
     depends_on:
       - db
       - redis
     args:
       buildno: 1  # - buildno=1 也可以 ,需要dockerfile 定义ARG buildno 
     cache_from:
       - alpine:latest
       - corp/web_app:3.14
     labels:
       com.example.description: "Accounting webapp"
       com.example.department: "Finance"
       com.example.label-with-empty-value: ""
     shm_size: '2gb'   # shm_size: 10000000 也可以
   deploy:
     replicas: 1
   devices:
     - "/dev/ttyUSB0:/dev/ttyUSB0"
   dns: 8.8.8.8
   dns_search: example.com
   entrypoint: /code/entrypoint.sh
   env_file:
     - ./common.env
     - ./apps/web.env
     - /opt/secrets.env 
   environment:
     RACK_ENV: development
     SHOW: 'true'
     SESSION_SECRET: 
   expose:
    - "3000"
    - "8000"
   external_links:
    - redis_1
    - project_db_1:mysql
    - project_db_1:postgresql
   extra_hosts:
    - "somehost:162.242.195.82"
    - "otherhost:50.31.209.229"
   links:
    - db
    - db:database
    - redis
   logging:
     driver: syslog
     options:
       syslog-address: "tcp://192.168.0.42:123"
   ports:
      - "3000"
      - "3000-3005"
      - "8000:8000"
      - "9090-9091:8080-8081"
      - "49100:22"
      - "127.0.0.1:8001:8001"
      - "127.0.0.1:5000-5010:5000-5010"
      - "6060:6060/udp"
   restart: on-failure
   stop_signal: SIGUSR1
   ulimits:
     nproc: 65535
     nofile:
       soft: 20000
       hard: 40000
   configs:
     - source: my_config
       target: /redis_config
       uid: '103'
       gid: '103'
       mode: 0440
 redis:
   image: redis
 db:
   image: postgres
configs:
 my_config:
   file: ./my_config.txt
 my_other_config:
   external: true
 my_credentials_spec:
   file: ./my-credential-spec.json|

参考文献

本文作者:前端首席体验师(CheongHu)

联系邮箱:simple2012hcz@126.com

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
Web前端工程师
手记
粉丝
0
获赞与收藏
22

关注作者,订阅最新文章

阅读免费教程

  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消