Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removing bullseye
  • Loading branch information
sireeshajonnalagadda authored Sep 26, 2025
commit b9568f7f997987964d4dbf752ef0765f5e193b63
12 changes: 6 additions & 6 deletions src/java-8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
| *Categories* | Core, Languages |
| *Image type* | Dockerfile |
| *Published images* | mcr.microsoft.com/devcontainers/java:8 |
| *Available image variants* | 8 / 8-trixie, 8-bookworm, 8-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/java/tags/list)) |
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bullseye` and `bookworm` variants |
| *Available image variants* | 8 / 8-trixie, 8-bookworm ([full list](https://mcr.microsoft.com/v2/devcontainers/java/tags/list)) |
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `trixie` and `bookworm` variants |
| *Container host OS support* | Linux, macOS, Windows |
| *Container OS* | Debian |
| *Languages, platforms* | Java |
Expand All @@ -23,15 +23,15 @@ See **[history](history)** for information on the contents of published images.

You can directly reference pre-built versions of `Dockerfile` by using the `image` property in `.devcontainer/devcontainer.json` or updating the `FROM` statement in your own `Dockerfile` to one of the following. An example `Dockerfile` is included in this repository.

- `mcr.microsoft.com/devcontainers/java:8` (or `8-trixie`, `8-bookworm`, `8-bullseye` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/java:8` (or `8-trixie`, `8-bookworm` to pin to an OS version)

Refer to [this guide](https://containers.dev/guide/dockerfile) for more details.

You can decide how often you want updates by referencing a [semantic version](https://semver.org/) of each image. For example:

- `mcr.microsoft.com/devcontainers/java:3-8` (or `3-8-trixie`, `3-8-bookworm`, `3-8-bullseye` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/java:3.0-8` (or `3.0-8-bookworm`, `3.0-8-bullseye` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/java:3.0.0-8` (or `3.0.0-8-bookworm`, `3.0.0-8-bullseye` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/java:3-8` (or `3-8-trixie`, `3-8-bookworm` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/java:3.0-8` (or `3.0-8-trixie`, `3.0-8-bookworm` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/java:3.0.0-8` (or `3.0.0-8-trixie`, `3.0.0-8-bookworm` to pin to an OS version)

However, we only do security patching on the latest [non-breaking, in support](https://github.com/devcontainers/images/issues/90) versions of images (e.g. `3-8`). You may want to run `apt-get update && apt-get upgrade` in your Dockerfile if you lock to a more specific version to at least pick up OS security updates.

Expand Down
12 changes: 2 additions & 10 deletions src/java-8/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"version": "3.0.0",
"variants": [
"trixie",
"bookworm",
"bullseye"
"bookworm"
],
"build": {
"latest": false,
Expand All @@ -17,10 +16,6 @@
"bookworm": [
"linux/amd64",
"linux/arm64"
],
"bullseye": [
"linux/amd64",
"linux/arm64"
]
},
"tags": [
Expand All @@ -33,10 +28,7 @@
],
"bookworm": [
"java:${VERSION}-8-jdk-bookworm"
],
"bullseye": [
"java:${VERSION}-8-jdk-bullseye"
]
]
}
},
"dependencies": {
Expand Down