You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2020/01/15 22:06:15 UTC

[isis] branch master updated: demo app readme: image was renamed

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

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 21b9a64  demo app readme: image was renamed
21b9a64 is described below

commit 21b9a640bc4c4dc5a348ff9c12a45d6368794824
Author: Andi Huber <ah...@apache.org>
AuthorDate: Wed Jan 15 23:06:06 2020 +0100

    demo app readme: image was renamed
---
 examples/demo/README.adoc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/examples/demo/README.adoc b/examples/demo/README.adoc
index c9b0708..5f941af 100644
--- a/examples/demo/README.adoc
+++ b/examples/demo/README.adoc
@@ -8,7 +8,7 @@ It allows you to learn the very basics and also to discover some of the more adv
 
 == Docker
 
-NOTE: Further on *<tag>* is used as a placeholder for the docker image tag of your choice. Actual tag names might be changed without notice. Currently we have tag *springboot*. See https://hub.docker.com/r/apacheisis/isis-2-demo/tags/[apacheisis/isis-2-demo] (Docker-Hub)
+NOTE: Further on *<tag>* is used as a placeholder for the docker image tag of your choice. When omitted the latest version is used. Actual tag names might be changed without notice. Currently we have tag *nightly*. See https://hub.docker.com/r/apacheisis/demo-springboot/tags/[apacheisis/isis-2-demo] (Docker-Hub)
 
 === Prereqs
 
@@ -20,7 +20,7 @@ Pull the demo image using:
 
 [source]
 ----
-docker pull apacheisis/isis-2-demo:<tag>
+docker pull apacheisis/demo-springboot:<tag>
 ----
 
 === Running the Docker Image
@@ -29,7 +29,7 @@ Run the demo image using:
 
 [source]
 ----
-docker run --name demo --detach -p8080:8080 apacheisis/isis-2-demo:<tag>
+docker run --name demo --detach -p8080:8080 apacheisis/demo-springboot:<tag>
 ----
 
 This will start a new Docker container named 'demo'.
@@ -51,14 +51,14 @@ The 'run' command above then becomes:
 
 [source]
 ----
-docker run --name demo --detach -p8080:8080 -ePROTOTYPING=true apacheisis/isis-2-demo:<tag>
+docker run --name demo --detach -p8080:8080 -ePROTOTYPING=true apacheisis/demo-springboot:<tag>
 ----
 
 To run the container with your console attached, replace the '--detach' argument with '-it'. (Use CTRL-C to stop and detach.)
 
 [source]
 ----
-docker run --name demo -it -p8080:8080 apacheisis/isis-2-demo:<tag>
+docker run --name demo -it -p8080:8080 apacheisis/demo-springboot:<tag>
 ----
 
 == Contributing