community-catalog/templates/etcd-ha/3/docker-compose.yml
James Oliver 2c8b6716d1 Etcd v2.3.6-4 (#219)
* baseline

* resiliency fixes, documentation

* code review changes
2016-07-22 10:05:17 -07:00

23 lines
478 B
YAML

etcd:
image: rancher/etcd:v2.3.6-4
labels:
io.rancher.scheduler.affinity:container_label_ne: io.rancher.stack_service.name=$${stack_name}/$${service_name}
io.rancher.sidekicks: data
environment:
ETCD_DATA_DIR: /data
ETCDCTL_ENDPOINT: http://etcd:2379
RANCHER_DEBUG: '${DEBUG}'
links:
- data
volumes_from:
- data
data:
image: busybox
command: /bin/true
net: none
volumes:
- /data
labels:
io.rancher.container.start_once: 'true'