ETCD后台服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
366 B

3 years ago
  1. version: '3'
  2. services:
  3. etcd:
  4. image: "quay.azk8s.cn/coreos/etcd:v3.3"
  5. container_name: "etcdv3.3"
  6. environment:
  7. ETCD_ADVERTISE_CLIENT_URLS: "http://0.0.0.0:2379"
  8. ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379"
  9. ETCDCTL_API: "3"
  10. volumes:
  11. - ./default.etcd:/default.etcd
  12. ports:
  13. - 2379:2379
  14. - 2380:2380
  15. - 4001:4001