This is an automated email from the ASF dual-hosted git repository. garren pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/couchdb-docker.git
commit 291a0235c0dc4815171c78ecabe72799470fffe8 Author: Robert Kowalski <[email protected]> AuthorDate: Sat Oct 8 17:23:42 2016 +0200 readd haproxy (#79) this readds haproxy as a dependency. this way you can pass `--with-haproxy` as a flag again and expose couchdb on 5984 closes #78 --- 2.0-dev/Dockerfile | 1 + 2.0.0-rc1-vote/Dockerfile | 1 + 2.0.0/Dockerfile | 1 + 3 files changed, 3 insertions(+) diff --git a/2.0-dev/Dockerfile b/2.0-dev/Dockerfile index 5f586e3..2c3b957 100644 --- a/2.0-dev/Dockerfile +++ b/2.0-dev/Dockerfile @@ -20,6 +20,7 @@ RUN groupadd -r couchdb && useradd -d /opt/couchdb -g couchdb couchdb RUN apt-get update -y && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ + haproxy \ erlang-nox \ erlang-reltool \ libicu52 \ diff --git a/2.0.0-rc1-vote/Dockerfile b/2.0.0-rc1-vote/Dockerfile index dc180d5..94136fc 100644 --- a/2.0.0-rc1-vote/Dockerfile +++ b/2.0.0-rc1-vote/Dockerfile @@ -20,6 +20,7 @@ RUN groupadd -r couchdb && useradd -d /opt/couchdb -g couchdb couchdb RUN apt-get update -y && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ + haproxy \ erlang-nox \ erlang-reltool \ libicu52 \ diff --git a/2.0.0/Dockerfile b/2.0.0/Dockerfile index 324ca5b..3f76b8b 100644 --- a/2.0.0/Dockerfile +++ b/2.0.0/Dockerfile @@ -20,6 +20,7 @@ RUN groupadd -r couchdb && useradd -d /opt/couchdb -g couchdb couchdb RUN apt-get update -y && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ + haproxy \ erlang-nox \ erlang-reltool \ libicu52 \ -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
