Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/binocarlos/docker-etcd

Dockerfile to build etcd and trigger the Docker index trusted builds
https://github.com/binocarlos/docker-etcd

Last synced: 11 days ago
JSON representation

Dockerfile to build etcd and trigger the Docker index trusted builds

Awesome Lists containing this project

README

        

docker-etcd
===========

Dockerfile to build etcd

```
FROM ubuntu:12.04
RUN apt-get update
RUN apt-get install -y python-software-properties git
RUN add-apt-repository -y ppa:duh/golang
RUN apt-get update
RUN apt-get install -y golang
RUN git clone https://github.com/coreos/etcd.git /opt/etcd
RUN cd /opt/etcd && ./build
EXPOSE 4001 7001
ENTRYPOINT ["/opt/etcd/etcd", "-c", "0.0.0.0:4001", "-s", "0.0.0.0:7001"]
```