We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac92ee8 commit e21a02eCopy full SHA for e21a02e
ci/test/run-general.sh
@@ -4,6 +4,11 @@ set -e
4
set -x
5
6
export PHP_VERSION_SHORT=$(echo "${PHP_VERSION:-8.2}" | sed 's/\.//')
7
+if [[ "${PHP_VERSION:-8.2}" == "8.4" ]]; then
8
+ export IMAGE_OS="bookworm"
9
+else
10
+ export IMAGE_OS="buster"
11
+fi
12
13
# Handy aliases
14
HN="docker-compose exec -T hypernode"
docker-compose.yaml
@@ -2,7 +2,7 @@ version: "3"
2
services:
3
hypernode:
container_name: hypernode
- image: docker.hypernode.com/byteinternet/hypernode-bookworm-docker-php${PHP_VERSION_SHORT:-81}-mysql80
+ image: docker.hypernode.com/byteinternet/hypernode-${IMAGE_OS:buster}-docker-php${PHP_VERSION_SHORT:-81}-mysql57
volumes:
- ./ci/test/.ssh:/root/.ssh
ports:
0 commit comments