06.Docker Compose yaml编写

一、yaml规则:官网

008

docke-compose.yaml核心

#分为三层
#第一层版本
version: "3.9"
#第二层服务
services:
  redis:
    image: redis:latest
    deploy:
      replicas: 1
    configs:
      - source: my_config
        target: /redis_config
        uid: '103'
        gid: '103'
        mode: 0440
#第三层其它配置
configs:
  my_config:
    file: ./my_config.txt
  my_other_config:
    external: true


(1)