You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2018/07/10 22:36:34 UTC

[couchdb-docker] branch 172-212 updated (9ac4c19 -> a41d925)

This is an automated email from the ASF dual-hosted git repository.

wohali pushed a change to branch 172-212
in repository https://gitbox.apache.org/repos/asf/couchdb-docker.git.


    omit 9ac4c19  Upgrade 1.7.1, 2.1.1 -> 1.7.2, 2.1.2
     new a41d925  Upgrade 1.7.1, 2.1.1 -> 1.7.2, 2.1.2

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (9ac4c19)
            \
             N -- N -- N   refs/heads/172-212 (a41d925)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[couchdb-docker] 01/01: Upgrade 1.7.1, 2.1.1 -> 1.7.2, 2.1.2

Posted by wo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch 172-212
in repository https://gitbox.apache.org/repos/asf/couchdb-docker.git

commit a41d925aab542a11634c4f47f897c024569ffc00
Author: Joan Touzet <wo...@apache.org>
AuthorDate: Tue Jul 10 14:51:42 2018 -0700

    Upgrade 1.7.1, 2.1.1 -> 1.7.2, 2.1.2
---
 .travis.yml                                                  | 12 +++++-------
 {1.7.1-couchperuser => 1.7.2-couchperuser}/Dockerfile        |  2 +-
 .../docker-entrypoint.sh                                     |  0
 {1.7.1 => 1.7.2}/Dockerfile                                  |  2 +-
 {1.7.1 => 1.7.2}/docker-entrypoint.sh                        |  0
 {2.1.1 => 2.1.2}/10-docker-default.ini                       |  0
 {2.1.1 => 2.1.2}/Dockerfile                                  |  2 +-
 {2.1.1 => 2.1.2}/docker-entrypoint.sh                        |  0
 {2.1.1 => 2.1.2}/vm.args                                     |  0
 9 files changed, 8 insertions(+), 10 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 7db5791..5811b4c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,12 +4,10 @@ services:
   - docker
 
 env:
-  - RELEASE=1.7.1
-  - RELEASE=1.7.1-couchperuser
-  - RELEASE=2.1.1
-  - RELEASE=dev
-  - RELEASE=dev-cluster
+  - RELEASES="1.7.2 1.7.2-couchperuser"
+  - RELEASES=2.1.2
+  - RELEASES=dev
+  - RELEASES=dev-cluster
 
 script:
-  - docker build -t couchdb:$RELEASE $RELEASE
-  - docker run -d -p 5984:5984 couchdb:$RELEASE && sleep 10 && curl http://localhost:5984
+  - for rel in $RELEASES; do docker build -t couchdb:$rel $rel; docker run -d --name $rel -p 5984:5984 couchdb:$rel && sleep 10 && curl http://localhost:5984 && docker kill $rel; done
diff --git a/1.7.1-couchperuser/Dockerfile b/1.7.2-couchperuser/Dockerfile
similarity index 98%
rename from 1.7.1-couchperuser/Dockerfile
rename to 1.7.2-couchperuser/Dockerfile
index 1ed7a4c..510a458 100644
--- a/1.7.1-couchperuser/Dockerfile
+++ b/1.7.2-couchperuser/Dockerfile
@@ -10,7 +10,7 @@
 # License for the specific language governing permissions and limitations under
 # the License.
 
-FROM couchdb:1.7.1
+FROM couchdb:1.7.2
 
 MAINTAINER CouchDB Developers dev@couchdb.apache.org
 
diff --git a/1.7.1-couchperuser/docker-entrypoint.sh b/1.7.2-couchperuser/docker-entrypoint.sh
similarity index 100%
rename from 1.7.1-couchperuser/docker-entrypoint.sh
rename to 1.7.2-couchperuser/docker-entrypoint.sh
diff --git a/1.7.1/Dockerfile b/1.7.2/Dockerfile
similarity index 99%
rename from 1.7.1/Dockerfile
rename to 1.7.2/Dockerfile
index da36f22..95b49be 100644
--- a/1.7.1/Dockerfile
+++ b/1.7.2/Dockerfile
@@ -76,7 +76,7 @@ RUN set -xe \
     gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
   done
 
-ENV COUCHDB_VERSION 1.7.1
+ENV COUCHDB_VERSION 1.7.2
 
 # download dependencies, compile and install couchdb,
 # set correct permissions, expose couchdb to the outside and disable logging to disk
diff --git a/1.7.1/docker-entrypoint.sh b/1.7.2/docker-entrypoint.sh
similarity index 100%
rename from 1.7.1/docker-entrypoint.sh
rename to 1.7.2/docker-entrypoint.sh
diff --git a/2.1.1/10-docker-default.ini b/2.1.2/10-docker-default.ini
similarity index 100%
rename from 2.1.1/10-docker-default.ini
rename to 2.1.2/10-docker-default.ini
diff --git a/2.1.1/Dockerfile b/2.1.2/Dockerfile
similarity index 99%
rename from 2.1.1/Dockerfile
rename to 2.1.2/Dockerfile
index 1ffb317..9520b6c 100644
--- a/2.1.1/Dockerfile
+++ b/2.1.2/Dockerfile
@@ -79,7 +79,7 @@ RUN set -xe \
     gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
   done
 
-ENV COUCHDB_VERSION 2.1.1
+ENV COUCHDB_VERSION 2.1.2
 
 # Download dev dependencies
 RUN buildDeps=' \
diff --git a/2.1.1/docker-entrypoint.sh b/2.1.2/docker-entrypoint.sh
similarity index 100%
rename from 2.1.1/docker-entrypoint.sh
rename to 2.1.2/docker-entrypoint.sh
diff --git a/2.1.1/vm.args b/2.1.2/vm.args
similarity index 100%
rename from 2.1.1/vm.args
rename to 2.1.2/vm.args