From d1c83aa30fd88078600ebee61be73edb39ff544f Mon Sep 17 00:00:00 2001 From: Kris De Volder Date: Mon, 16 Nov 2020 16:08:00 -0800 Subject: [PATCH] theia docker image now under `springci/...` --- concourse/petclinic-theia-image/Dockerfile | 2 +- concourse/pipeline.yml | 2 +- concourse/theia-docker-image/README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/concourse/petclinic-theia-image/Dockerfile b/concourse/petclinic-theia-image/Dockerfile index ee03b16d1..1fecc8871 100644 --- a/concourse/petclinic-theia-image/Dockerfile +++ b/concourse/petclinic-theia-image/Dockerfile @@ -1,3 +1,3 @@ -FROM kdvolder/sts4-theia-snapshot +FROM springci/sts4-theia-snapshot ADD clone-and-build.sh /tmp/clone-and-build.sh RUN /tmp/clone-and-build.sh diff --git a/concourse/pipeline.yml b/concourse/pipeline.yml index 298bfe1cd..94314ab6c 100644 --- a/concourse/pipeline.yml +++ b/concourse/pipeline.yml @@ -262,7 +262,7 @@ resources: source: username: ((docker_hub_username)) password: ((docker_hub_password)) - repository: kdvolder/sts4-theia-snapshot + repository: springci/sts4-theia-snapshot - name: maven-cache type: s3 source: diff --git a/concourse/theia-docker-image/README.md b/concourse/theia-docker-image/README.md index 7b2f9ce42..4ef7561a0 100644 --- a/concourse/theia-docker-image/README.md +++ b/concourse/theia-docker-image/README.md @@ -6,12 +6,12 @@ We currently publish a docker image that contains: - a full-featured `theia` set of package for version `next`. - all 4 of our vscode extensions as latest snapshot version. -This image is published to docker hub as `kdvolder/sts4-theia-snapshot:latest`. +This image is published to docker hub as `springci/sts4-theia-snapshot:latest`. You can run it as follows: ``` -docker run -it --init -p 3000:3000 -p 8080:8080 -v "$(pwd):/home/project:cached" kdvolder/sts4-theia-snapshot:latest +docker run -it --init -p 3000:3000 -p 8080:8080 -v "$(pwd):/home/project:cached" springci/sts4-theia-snapshot:latest ``` Then open `http://localhost:3000` to access it.