You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by sb...@apache.org on 2017/10/30 19:09:58 UTC

[geode] branch develop updated (e8196df -> 3b70ee6)

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

sbawaskar pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git.


    from e8196df  GEODE-3902: Correct region used by test (#993)
     new 147552e  Add instructions for pushing "latest" docker image
     new 3b70ee6  Updating Dockerfile - for release 1.3.0 - removing references to incubating

The 2 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:
 docker/Dockerfile | 14 +++++++-------
 docker/README.md  |  3 ++-
 2 files changed, 9 insertions(+), 8 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].

[geode] 01/02: Add instructions for pushing "latest" docker image

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

sbawaskar pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 147552e6e33e1451c6d4dc4c5df5030044e7c62e
Author: Swapnil Bawaskar <sb...@apache.org>
AuthorDate: Tue Oct 31 00:36:31 2017 +0530

    Add instructions for pushing "latest" docker image
---
 docker/README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/docker/README.md b/docker/README.md
index b8bb903..a02f97a 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -9,7 +9,8 @@ docker build .
 If you're updating the image for a release, tag the build with the version:
 
 ```
-docker build -t apachegeode/geode:1.0.0-incubating .
+docker build -t apachegeode/geode:{version} .
+docker build -t apachegeode/geode:latest .
 ```
 
 Once it's tagged, push to DockerHub:

-- 
To stop receiving notification emails like this one, please contact
"commits@geode.apache.org" <co...@geode.apache.org>.

[geode] 02/02: Updating Dockerfile - for release 1.3.0 - removing references to incubating

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

sbawaskar pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 3b70ee615b585c07fbd177011cfe71ab457cf5bb
Author: Swapnil Bawaskar <sb...@apache.org>
AuthorDate: Tue Oct 31 00:38:26 2017 +0530

    Updating Dockerfile
    - for release 1.3.0
    - removing references to incubating
---
 docker/Dockerfile | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 1917a61..596597b 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -18,21 +18,21 @@ FROM centos:7
 MAINTAINER Apache Geode Community <de...@geode.apache.org>
 
 LABEL Vendor="Apache Geode"
-LABEL version=1.2.1
+LABEL version=1.3.0
 
 RUN	yum install -y wget which tar git java-1.8.0-openjdk-devel \
-	&& git clone https://github.com/apache/incubator-geode.git \
-	&& cd incubator-geode \
-	&& git checkout rel/v1.2.1 \
+	&& git clone https://github.com/apache/geode.git \
+	&& cd geode \
+	&& git checkout rel/v1.3.0 \
 	&& ./gradlew build -Dskip.tests=true -xjavadoc \
-	&& ls /incubator-geode | grep -v geode-assembly | xargs rm -rf \
+	&& ls /geode | grep -v geode-assembly | xargs rm -rf \
 	&& rm -rf /root/.gradle/ \
-	&& rm -rf /incubator-geode/geode-assembly/build/distributions/ \
+	&& rm -rf /geode/geode-assembly/build/distributions/ \
 	&& rm -rf /usr/share/locale/* \
 	&& yum remove -y perl \
 	&& yum clean all
 
-ENV GEODE_HOME /incubator-geode/geode-assembly/build/install/apache-geode
+ENV GEODE_HOME /geode/geode-assembly/build/install/apache-geode
 ENV PATH $PATH:$GEODE_HOME/bin
 
 # Default ports:

-- 
To stop receiving notification emails like this one, please contact
"commits@geode.apache.org" <co...@geode.apache.org>.