mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-05 13:04:08 +00:00
- Script to set up a DfM etcd for bootstrapping a cluser - Custom/local etcd package for moby derived from the official image with script to start etcd - YAML file to create a etcd moby image - README with current instructions This has a bunch of stuff, including the discovery URL hard coded. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
7 lines
175 B
Docker
7 lines
175 B
Docker
# A dockerfile to build an etcd container image from the upstream one
|
|
# with a script as entry point
|
|
FROM quay.io/coreos/etcd:v3.1.5
|
|
COPY ./etcd.sh /
|
|
|
|
ENTRYPOINT ["/etcd.sh"]
|