mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 09:04:12 +02:00
depricate 8.0 images
This commit is contained in:
parent
2f060243f9
commit
260846ff38
4 changed files with 4 additions and 4 deletions
2
.github/workflows/docker.yaml
vendored
2
.github/workflows/docker.yaml
vendored
|
|
@ -16,7 +16,7 @@ jobs:
|
|||
|
||||
strategy:
|
||||
matrix:
|
||||
php-version: [ '8.0', '8.1', '8.2', '8.3' ]
|
||||
php-version: [ '8.1', '8.2', '8.3' ]
|
||||
variant: [ '', '-dbg' ]
|
||||
|
||||
name: haze-${{ matrix.php-version }}${{ matrix.variant }}
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ haze start [database] [php-version] [services]
|
|||
```
|
||||
|
||||
Where `database` is one of `sqlite`, `mysql`, `mariadb`, `pgsql` or `oracle` with an optional version (e.g. `pgsql:12`), defaults to `sqlite`.
|
||||
And `php-version` is one of `8.0`, `8.1`, `8.2`, `8.3`, defaults to `8.1`. `7.3` and `7.4` are still supported but the docker images for those versions aren't being updated anymore so they might be missing some newer features.
|
||||
And `php-version` is one of `8.1`, `8.2`, `8.3`, defaults to `8.1`. `7.3` and `7.4` and `8.0` are still supported but the docker images for those versions aren't being updated anymore so they might be missing some newer features.
|
||||
|
||||
Each php version also comes with a `-dbg` variant that has php compiled in debug mode and can be used for debugging php itself with gdb.
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ set -e
|
|||
|
||||
export DOCKER_BUILDKIT=1
|
||||
|
||||
versions=("8.0" "8.1" "8.2" "8.3")
|
||||
versions=("8.1" "8.2" "8.3")
|
||||
|
||||
for version in "${versions[@]}"; do
|
||||
echo "building haze-php-$version"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
versions=("8.0" "8.1" "8.2" "8.0-dbg" "8.1-dbg" "8.2-dbg")
|
||||
versions=("8.1" "8.2" "8.0-dbg" "8.1-dbg" "8.2-dbg")
|
||||
|
||||
for version in "${versions[@]}"; do
|
||||
docker push "icewind1991/haze-php:$version"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue