From fb6bf16143e3a58b323a8df61097820fd95f268f Mon Sep 17 00:00:00 2001 From: deviantony Date: Thu, 5 May 2022 20:33:58 +0000 Subject: [PATCH] update README --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 47e4b49..ce0f6a4 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ docker run -it --init \ -p 3000:3000 -p 9000:9000 -p 9443:9443 -p 8000:8000 \ -v /var/run/docker.sock:/var/run/docker.sock \ --name portainer-devkit \ - portainer/dev-toolkit:2022.04 + portainer/dev-toolkit:2022.05 ``` Now you can access VScode directly at http://localhost:3000 and start coding (almost)! @@ -34,7 +34,7 @@ See `Dockerfile` for more details. The `portainer/dev-toolkit` image is using DockerHub automatic builds to build images based on this git repository tags. -E.g. creating a new `2022.04` tag in this repository would automatically build `portainer/dev-toolkit:2022.04`. +E.g. creating a new `2022.05` tag in this repository would automatically build `portainer/dev-toolkit:2022.05`. # Requirements @@ -51,7 +51,7 @@ Assuming the toolkit is not built/provided by Portainer or you want to tweak it, docker build -t portainer-development-toolkit-base . ``` -**NOTE**: the `portainer/dev-toolkit` is automatically built based on tags available in this git repository. E.g creating a new tag `2022.04` will automatically build and publish `portainer/dev-toolkit:2022.04`. +**NOTE**: the `portainer/dev-toolkit` is automatically built based on tags available in this git repository. E.g creating a new tag `2022.05` will automatically build and publish `portainer/dev-toolkit:2022.05`. # How to use it @@ -64,7 +64,7 @@ docker run -it --init \ -p 3000:3000 -p 9000:9000 -p 9443:9443 -p 8000:8000 \ -v /var/run/docker.sock:/var/run/docker.sock \ --name portainer-devkit \ - portainer/dev-toolkit:2022.04 + portainer/dev-toolkit:2022.05 ``` Now you can access VScode directly at http://localhost:3000 and start coding (almost)! @@ -81,7 +81,7 @@ All you will need is to build it first: docker build -t my-devkit -f examples/zsh/Dockerfile . ``` -Then you can use the instructions above to run it, just replace the official `portainer/dev-toolkit:2022.04` with your image: +Then you can use the instructions above to run it, just replace the official `portainer/dev-toolkit:2022.05` with your image: ``` docker run -it --init \ @@ -111,7 +111,7 @@ docker run -it --init \ -v /var/run/docker.sock:/var/run/docker.sock \ -e PORTAINER_PROJECT=/path/to/portainer/project/on/host \ --name portainer-devkit \ - portainer/dev-toolkit:2022.04 + portainer/dev-toolkit:2022.05 ``` ### Why do I need PORTAINER_PROJECT?