Notes how to build new version of prepared images.
This note is not necessary for USE images, it's for BUILD him.
Run build-php.sh script to build all of PHP versions.
To build only specific PHP version run only the target script on php folder, for example:
php/build-php-8.3.sh
To build older PHP versions run php/legacy/build-php-legacy.sh.
Run build-mariadb.sh script to build all of MariaDB versions.
All of scripts above supports ENV variables to do partial build only.
NO_PULL=1- Build images without pull newest version of base images from Docker Hub repositoryNO_BUILD=1- Process build withoutdocker buildrun (usefull for push pre-builded images)NO_TEST=1- Build images without test builded imagesNO_PUSH=1- Build images without push them to Docker Hub repository
Only build PHP images without push them to Docker Hub repository:
NO_PUSH=1 ./build-php.shOnly push pre-builded PHP images to Docker Hub repository:
NO_PULL=1 NO_BUILD=1 ./build-php.sh