├── 8 ├── .dockerignore ├── Dockerfile ├── Makefile ├── bin │ ├── actions.mk │ ├── files_chmod │ ├── files_chown │ ├── files_import │ ├── files_link │ ├── files_sync │ ├── git_checkout │ ├── git_clone │ ├── init_container │ └── migrate ├── check-configs.sh ├── docker-entrypoint.sh ├── orig │ ├── php-8.1.ini-development │ ├── php-8.1.ini-production │ ├── php-8.2.ini-development │ └── php-8.2.ini-production ├── templates │ ├── authorized_keys.tmpl │ ├── crontab.tmpl │ ├── docker-php-8.1.ini.tmpl │ ├── docker-php-8.2.ini.tmpl │ ├── docker-php-8.3.ini.tmpl │ ├── docker-php-8.4.ini.tmpl │ ├── docker-php-8.5.ini.tmpl │ ├── docker-php-ext-apcu.ini.tmpl │ ├── docker-php-ext-brotli.ini.tmpl │ ├── docker-php-ext-grpc.ini.tmpl │ ├── docker-php-ext-igbinary.ini.tmpl │ ├── docker-php-ext-newrelic.ini.tmpl │ ├── docker-php-ext-opcache.ini.tmpl │ ├── docker-php-ext-pcov.ini.tmpl │ ├── docker-php-ext-spx.ini.tmpl │ ├── docker-php-ext-sqlsrv.ini.tmpl │ ├── docker-php-ext-xdebug.ini.tmpl │ ├── docker-php-ext-xhprof.ini.tmpl │ ├── gitconfig.tmpl │ ├── id_rsa.tmpl │ ├── mariadb-client.cnf.tmpl │ ├── msmtprc.tmpl │ ├── ssh_config.tmpl │ ├── sshd_config.tmpl │ ├── wodby.settings.php.tmpl │ └── zz-www.conf.tmpl └── tests │ ├── authorized_keys │ ├── compose.yml │ ├── crontab │ ├── id_rsa │ ├── php_modules │ ├── 8.1 │ ├── 8.2 │ ├── 8.3 │ ├── 8.4 │ └── 8.5 │ ├── run.sh │ └── tests.sh ├── .github ├── actions │ ├── action.yml │ └── release.sh └── workflows │ └── workflow.yml ├── .gitignore ├── .php ├── LICENSE.md ├── README.md ├── index.php ├── release.sh ├── script.sh └── wodby.yml /.github/actions/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/.github/actions/action.yml -------------------------------------------------------------------------------- /.github/actions/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/.github/actions/release.sh -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.tmp 3 | .vscode -------------------------------------------------------------------------------- /.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/.php -------------------------------------------------------------------------------- /8/.dockerignore: -------------------------------------------------------------------------------- 1 | tests 2 | Makefile 3 | check-configs.sh 4 | orig -------------------------------------------------------------------------------- /8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/Dockerfile -------------------------------------------------------------------------------- /8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/Makefile -------------------------------------------------------------------------------- /8/bin/actions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/bin/actions.mk -------------------------------------------------------------------------------- /8/bin/files_chmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/bin/files_chmod -------------------------------------------------------------------------------- /8/bin/files_chown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/bin/files_chown -------------------------------------------------------------------------------- /8/bin/files_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/bin/files_import -------------------------------------------------------------------------------- /8/bin/files_link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/bin/files_link -------------------------------------------------------------------------------- /8/bin/files_sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/bin/files_sync -------------------------------------------------------------------------------- /8/bin/git_checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/bin/git_checkout -------------------------------------------------------------------------------- /8/bin/git_clone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/bin/git_clone -------------------------------------------------------------------------------- /8/bin/init_container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/bin/init_container -------------------------------------------------------------------------------- /8/bin/migrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/bin/migrate -------------------------------------------------------------------------------- /8/check-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/check-configs.sh -------------------------------------------------------------------------------- /8/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/docker-entrypoint.sh -------------------------------------------------------------------------------- /8/orig/php-8.1.ini-development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/orig/php-8.1.ini-development -------------------------------------------------------------------------------- /8/orig/php-8.1.ini-production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/orig/php-8.1.ini-production -------------------------------------------------------------------------------- /8/orig/php-8.2.ini-development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/orig/php-8.2.ini-development -------------------------------------------------------------------------------- /8/orig/php-8.2.ini-production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/orig/php-8.2.ini-production -------------------------------------------------------------------------------- /8/templates/authorized_keys.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/authorized_keys.tmpl -------------------------------------------------------------------------------- /8/templates/crontab.tmpl: -------------------------------------------------------------------------------- 1 | {{ getenv "CRONTAB" }} -------------------------------------------------------------------------------- /8/templates/docker-php-8.1.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-8.1.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-8.2.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-8.2.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-8.3.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-8.3.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-8.4.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-8.4.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-8.5.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-8.5.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-apcu.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-apcu.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-brotli.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-brotli.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-grpc.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-grpc.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-igbinary.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-igbinary.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-newrelic.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-newrelic.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-opcache.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-opcache.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-pcov.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-pcov.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-spx.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-spx.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-sqlsrv.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-sqlsrv.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-xdebug.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-xdebug.ini.tmpl -------------------------------------------------------------------------------- /8/templates/docker-php-ext-xhprof.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/docker-php-ext-xhprof.ini.tmpl -------------------------------------------------------------------------------- /8/templates/gitconfig.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/gitconfig.tmpl -------------------------------------------------------------------------------- /8/templates/id_rsa.tmpl: -------------------------------------------------------------------------------- 1 | {{ getenv "SSH_PRIVATE_KEY" }} -------------------------------------------------------------------------------- /8/templates/mariadb-client.cnf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/mariadb-client.cnf.tmpl -------------------------------------------------------------------------------- /8/templates/msmtprc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/msmtprc.tmpl -------------------------------------------------------------------------------- /8/templates/ssh_config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/ssh_config.tmpl -------------------------------------------------------------------------------- /8/templates/sshd_config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/sshd_config.tmpl -------------------------------------------------------------------------------- /8/templates/wodby.settings.php.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/wodby.settings.php.tmpl -------------------------------------------------------------------------------- /8/templates/zz-www.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/templates/zz-www.conf.tmpl -------------------------------------------------------------------------------- /8/tests/authorized_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/authorized_keys -------------------------------------------------------------------------------- /8/tests/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/compose.yml -------------------------------------------------------------------------------- /8/tests/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/crontab -------------------------------------------------------------------------------- /8/tests/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/id_rsa -------------------------------------------------------------------------------- /8/tests/php_modules/8.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/php_modules/8.1 -------------------------------------------------------------------------------- /8/tests/php_modules/8.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/php_modules/8.2 -------------------------------------------------------------------------------- /8/tests/php_modules/8.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/php_modules/8.3 -------------------------------------------------------------------------------- /8/tests/php_modules/8.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/php_modules/8.4 -------------------------------------------------------------------------------- /8/tests/php_modules/8.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/php_modules/8.5 -------------------------------------------------------------------------------- /8/tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/run.sh -------------------------------------------------------------------------------- /8/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/8/tests/tests.sh -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/php/HEAD/README.md -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |