docker-compose up -d 运行的时候提示错误

来源:6-3 compose实战

慕运维6531530

2018-08-12 16:13

the service name True must be a quoted string 在哪改?

写回答 关注

3回答

  • qq_走走看看_0
    2019-10-31 21:11:43

    https://www.jianshu.com/p/44022c67f117 文章中的 dock-compose.yaml

  • qq_走走看看_0
    2019-10-31 21:10:50

    version: '2' networks:  byfn: services:  etcd1:    image: quay.io/coreos/etcd    container_name: etcd1    command: etcd -name etcd1 -advertise-client-urls http://0.0.0.0:2379 -listen-client-urls http://0.0.0.0:2379 -listen-peer-urls http://0.0.0.0:2380 -initial-cluster-token etcd-cluster -initial-cluster "etcd1=http://etcd1:2380,etcd2=http://etcd2:2380,etcd3=http://etcd3:2380" -initial-cluster-state new    ports:      - 32791:2379      - 32790:2380    networks:      - byfn  etcd2:    image: quay.io/coreos/etcd    container_name: etcd2    command: etcd -name etcd2 -advertise-client-urls http://0.0.0.0:2379 -listen-client-urls http://0.0.0.0:2379 -listen-peer-urls http://0.0.0.0:2380 -initial-cluster-token etcd-cluster -initial-cluster "etcd1=http://etcd1:2380,etcd2=http://etcd2:2380,etcd3=http://etcd3:2380" -initial-cluster-state new    ports:      - 32789:2379      - 32788:2380    networks:      - byfn  etcd3:    image: quay.io/coreos/etcd    container_name: etcd3    command: etcd -name etcd3 -advertise-client-urls http://0.0.0.0:2379 -listen-client-urls http://0.0.0.0:2379 -listen-peer-urls http://0.0.0.0:2380 -initial-cluster-token etcd-cluster -initial-cluster "etcd1=http://etcd1:2380,etcd2=http://etcd2:2380,etcd3=http://etcd3:2380" -initial-cluster-state new    ports:      - 32787:2379      - 32786:2380    networks:      - byfn


  • qq_果冻_4
    2018-08-19 16:22:47

    docker-compose.yml 文件方便贴出来吗

    qq_走走看...

    https://www.jianshu.com/p/44022c67f117 文章中的 docker-compose.yml

    2019-10-31 21:12:07

    共 1 条回复 >

Docker入门

再不学点Docker你就out啦!

96683 学习 · 242 问题

查看课程

相似问题