Skip to content

Commit d8b2327

Browse files
committed
version: bump to 2025.09 and update related configurations
1 parent 08cb476 commit d8b2327

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Note: these can be overriden on the command line e.g. `make VERSION=2025.06`
2-
VERSION=2025.06
1+
# Note: these can be overriden on the command line e.g. `make VERSION=2025.09`
2+
VERSION=2025.09
33

44
.PHONY: base-amd64 base-arm64 base alapenna
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ See `Dockerfile` for more details.
2929

3030
The `portainer/dev-toolkit` image is using DockerHub automatic builds to build multi-arch (amd64, arm64) images based on this git repository tags.
3131

32-
E.g. creating and pushing a new `2025.06` tag in this repository will automatically build `portainer/dev-toolkit:2025.06`.
32+
E.g. creating and pushing a new `2025.09` tag in this repository will automatically build `portainer/dev-toolkit:2025.09`.
3333

3434
> **Warning**
3535
> The automatic builds are currently disabled. Reach out to @deviantony for building newer versions of the base image using manual instructions below.
@@ -69,7 +69,7 @@ All you will need is to build it first:
6969
docker buildx build -t my-devkit -f examples/zsh/Dockerfile .
7070
```
7171

72-
Then you can use the instructions above to run it, just replace the official `portainer/dev-toolkit:2025.06` with your image in the `devcontainer.json` file:
72+
Then you can use the instructions above to run it, just replace the official `portainer/dev-toolkit:2025.09` with your image in the `devcontainer.json` file:
7373

7474
```json
7575
{

devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "portainer-dev-toolkit",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "portainer/dev-toolkit:2025.06",
6+
"image": "portainer/dev-toolkit:2025.09",
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},

examples/python-extension/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "portainer-dev-toolkit",
3-
"image": "portainer/dev-toolkit:2025.06",
3+
"image": "portainer/dev-toolkit:2025.09",
44
"forwardPorts": [8000, 8999, 9000, 9443],
55
"mounts": [
66
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"

examples/zsh/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM portainer/dev-toolkit:2025.06
1+
FROM portainer/dev-toolkit:2025.09
22

33
ENV HOME=/root
44

user-toolkits/alapenna/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM portainer/dev-toolkit:2025.06
1+
FROM portainer/dev-toolkit:2025.09
22

33
# Create a specific folder for Git configurations
44
RUN mkdir -p /root/.config/git

0 commit comments

Comments
 (0)