deploy.stack/dbSer/etcd.yml

20 lines
419 B
YAML
Raw Permalink Normal View History

2024-02-26 01:42:09 +08:00
services:
etcd:
image: quay.io/coreos/etcd:v3.5.0
container_name: Dev-Etcd
restart: always
volumes:
- etcd-data:/etcd-data
ports:
- 2379:2379
networks:
DevNet:
ipv4_address: 172.22.10.207
command:
- etcd
- --data-dir=/etcd-data
- --listen-client-urls=http://0.0.0.0:2379
2024-02-28 17:08:52 +08:00
- --advertise-client-urls=http://0.0.0.0:2379
volumes:
etcd-data: