4 lines
195 B
Docker
4 lines
195 B
Docker
FROM debian
|
|
RUN apt -y update && apt -y install etcd
|
|
ENTRYPOINT ["/usr/bin/etcd","--name","tfstate","--listen-client-urls","http://0.0.0.0:2379", "--advertise-client-urls","http://0.0.0.0:2379"]
|