dockerfiles/etcd/Dockerfile

14 lines
272 B
Docker
Raw Permalink Normal View History

2022-12-05 14:25:23 +03:00
FROM alt:sisyphus
MAINTAINER alt-cloud
RUN apt-get update && \
apt-get install -y etcd; \
rm -f /var/cache/apt/archives/*.rpm \
/var/cache/apt/*.bin \
/var/lib/apt/lists/*.*
VOLUME /data
ENTRYPOINT ["/usr/sbin/etcd", "--data-dir", "/data"]