Skip to content

Commit 80c3869

Browse files
Support PHP 8.0 (#448)
1 parent 385bfc1 commit 80c3869

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

src/php/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| *Categories* | Languages |
1010
| *Image type* | Dockerfile |
1111
| *Published images* | mcr.microsoft.com/devcontainers/php |
12-
| *Available image variants* | 8 / 8-bullseye, 8.2 / 8.2-bullseye, 8.1 / 8.1-bullseye, 8-buster, 8.2-buster, 8.1-buster ([full list](https://mcr.microsoft.com/v2/devcontainers/php/tags/list)) |
12+
| *Available image variants* | 8 / 8-bullseye, 8.2 / 8.2-bullseye, 8.1 / 8.1-bullseye, 8.0 / 8.0-bullseye, 8-buster, 8.2-buster, 8.1-buster, 8.0-buster ([full list](https://mcr.microsoft.com/v2/devcontainers/php/tags/list)) |
1313
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bullseye` variants |
1414
| *Container host OS support* | Linux, macOS, Windows |
1515
| *Container OS* | Debian |
@@ -25,6 +25,7 @@ You can directly reference pre-built versions of `Dockerfile` by using the `imag
2525
- `mcr.microsoft.com/devcontainers/php:8` (or `8-bullseye`, `8-buster` to pin to an OS version)
2626
- `mcr.microsoft.com/devcontainers/php:8.2` (or `8.2-bullseye`, `8.2-buster` to pin to an OS version)
2727
- `mcr.microsoft.com/devcontainers/php:8.1` (or `8.1-bullseye`, `8.1-buster` to pin to an OS version)
28+
- `mcr.microsoft.com/devcontainers/php:8.0` (or `8.0-bullseye`, `8.0-buster` to pin to an OS version)
2829

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

src/php/manifest.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
"variants": [
44
"8.2-apache-bullseye",
55
"8.1-apache-bullseye",
6+
"8.0-apache-bullseye",
67
"8.2-apache-buster",
7-
"8.1-apache-buster"
8+
"8.1-apache-buster",
9+
"8.0-apache-buster"
810
],
911
"build": {
1012
"latest": "8.2-apache-bullseye",
@@ -18,11 +20,18 @@
1820
"linux/amd64",
1921
"linux/arm64"
2022
],
23+
"8.0-apache-bullseye": [
24+
"linux/amd64",
25+
"linux/arm64"
26+
],
2127
"8.2-apache-buster": [
2228
"linux/amd64"
2329
],
2430
"8.1-apache-buster": [
2531
"linux/amd64"
32+
],
33+
"8.0-apache-buster": [
34+
"linux/amd64"
2635
]
2736
},
2837
"tags": [
@@ -40,13 +49,20 @@
4049
"php:${VERSION}-8.1",
4150
"php:${VERSION}-8.1-bullseye"
4251
],
52+
"8.0-apache-bullseye": [
53+
"php:${VERSION}-8.0",
54+
"php:${VERSION}-8.0-bullseye"
55+
],
4356
"8.2-apache-buster": [
4457
"php:${VERSION}-8-buster",
4558
"php:${VERSION}-8.2-buster",
4659
"php:${VERSION}-buster"
4760
],
4861
"8.1-apache-buster": [
4962
"php:${VERSION}-8.1-buster"
63+
],
64+
"8.0-apache-buster": [
65+
"php:${VERSION}-8.0-buster"
5066
]
5167
}
5268
},

0 commit comments

Comments
 (0)