Skip to content

Commit

Permalink
bump version tag
Browse files Browse the repository at this point in the history
  • Loading branch information
deviantony committed Oct 7, 2022
1 parent a305b32 commit 3c8fe09
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Note: these can be overriden on the command line e.g. `make VERSION=2022.09`
VERSION=2022.09
# Note: these can be overriden on the command line e.g. `make VERSION=2022.10`
VERSION=2022.10

.PHONY: setup clean base alapenna

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,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.09
portainer/dev-toolkit:2022.10
```

Now you can access VScode directly at http://localhost:3000 and start coding (almost)!
Expand All @@ -38,7 +38,7 @@ The Docker image is based on the OpenVSCode image provided by Gitpod: https://gi

The `portainer/dev-toolkit` **Linux AMD64** image is using DockerHub automatic builds to build images based on this git repository tags.

E.g. creating a new `2022.09` tag in this repository would automatically build `portainer/dev-toolkit:2022.09`.
E.g. creating a new `2022.10` tag in this repository would automatically build `portainer/dev-toolkit:2022.10`.

# Manual build

Expand Down Expand Up @@ -69,7 +69,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.09
portainer/dev-toolkit:2022.10
```

Now you can access VScode directly at http://localhost:3000 and start coding (almost)!
Expand All @@ -86,7 +86,7 @@ All you will need is to build it first:
docker buildx 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.09` with your image:
Then you can use the instructions above to run it, just replace the official `portainer/dev-toolkit:2022.10` with your image:

```
docker run -it --init \
Expand Down
2 changes: 1 addition & 1 deletion examples/python-extension/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM portainer/dev-toolkit:2022.09
FROM portainer/dev-toolkit:2022.10

# First, you'll need to retrieve the unique identifier associated to the extension
# It can be found on VSCode extension marketplace: https://marketplace.visualstudio.com/items?itemName=ms-python.python
Expand Down
2 changes: 1 addition & 1 deletion examples/zsh/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM portainer/dev-toolkit:2022.09
FROM portainer/dev-toolkit:2022.10

ENV HOME /root

Expand Down
2 changes: 1 addition & 1 deletion user-toolkits/alapenna/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM portainer/dev-toolkit:2022.09
FROM portainer/dev-toolkit:2022.10

# This image uses /root as the home instead of /home/workspace
ENV HOME /root
Expand Down

0 comments on commit 3c8fe09

Please sign in to comment.