├── .dockerfile-x ├── README.md └── build.sh ├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── build-all.yml │ ├── partial-build │ ├── 00-s6-overlay.yml │ ├── 01-php.yml │ ├── 02-servers.yml │ └── 03-apps.yml │ ├── template-common.yml │ └── template-php.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── _config.yml ├── src ├── dummy.dockerfile ├── dummy.md ├── php │ ├── .dockerignore │ ├── base-os.dockerfile │ ├── base-os.md │ ├── base-php.dockerfile │ ├── base-s6.dockerfile │ ├── base-s6.md │ ├── common │ │ ├── docker-php-entrypoint │ │ ├── os-common.dockerfile │ │ ├── os-crontab.dockerfile │ │ ├── os-s6-overlay.dockerfile │ │ ├── php-extensions.dockerfile │ │ ├── php-ini-directives.dockerfile │ │ ├── rootfs │ │ │ ├── etc │ │ │ │ ├── hooks │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ ├── 00-bash-profile │ │ │ │ │ │ ├── 00-php-config │ │ │ │ │ │ ├── 10-create-project │ │ │ │ │ │ ├── 20-create-index │ │ │ │ │ │ └── 30-other-fixes │ │ │ │ │ ├── cleanup │ │ │ │ │ │ ├── 00-post-build │ │ │ │ │ │ ├── 10-deps │ │ │ │ │ │ ├── 10-php-source │ │ │ │ │ │ ├── 10-upgrade │ │ │ │ │ │ └── ~unneeded-files │ │ │ │ │ ├── onbuild │ │ │ │ │ │ └── 00-greeting │ │ │ │ │ ├── onlive │ │ │ │ │ │ └── 00-debug-paths │ │ │ │ │ ├── onready │ │ │ │ │ │ ├── ~cache-env │ │ │ │ │ │ └── ~fix-ownership │ │ │ │ │ ├── post-boot-non-s6 │ │ │ │ │ │ └── 00-crontab │ │ │ │ │ └── post-boot │ │ │ │ │ │ ├── 00-autorun │ │ │ │ │ │ ├── 00-crontab │ │ │ │ │ │ └── 00-ssh-server │ │ │ │ └── welcome.txt │ │ │ ├── license │ │ │ ├── startup │ │ │ │ └── 99-greeting │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── utils │ │ │ │ ├── app-index │ │ │ │ ├── app-path │ │ │ │ ├── app-root │ │ │ │ ├── autorun │ │ │ │ ├── cleanup │ │ │ │ ├── debug-echo │ │ │ │ ├── download │ │ │ │ ├── env-default │ │ │ │ ├── env-path │ │ │ │ ├── greeting │ │ │ │ ├── has-cmd │ │ │ │ ├── has-s6 │ │ │ │ ├── hook │ │ │ │ ├── hook-loaded │ │ │ │ ├── in-app │ │ │ │ ├── is-debug │ │ │ │ ├── is-true │ │ │ │ ├── log-path │ │ │ │ ├── mkcert │ │ │ │ ├── msmtp-wrapper │ │ │ │ ├── os-name │ │ │ │ ├── ownership │ │ │ │ ├── pkg-add │ │ │ │ ├── pkg-del │ │ │ │ ├── s6-service │ │ │ │ ├── vergte │ │ │ │ ├── wait-for │ │ │ │ ├── web-chown │ │ │ │ ├── web-cmd │ │ │ │ ├── web-do │ │ │ │ ├── web-mkdir │ │ │ │ ├── web-wipe │ │ │ │ └── with-env │ │ └── shell-php │ │ │ ├── php-envvars │ │ │ ├── phpaddmod │ │ │ └── phpdelmod │ ├── meta.dockerfile │ ├── with-apache.dockerfile │ ├── with-apache.md │ ├── with-apache │ │ ├── apache-config.dockerfile │ │ ├── apache-install.dockerfile │ │ └── rootfs │ │ │ ├── etc │ │ │ ├── apache2 │ │ │ │ ├── apache2.conf │ │ │ │ └── sites-enabled │ │ │ │ │ └── 00-default.conf │ │ │ └── hooks │ │ │ │ └── server │ │ │ │ └── init-apache │ │ │ └── usr │ │ │ └── local │ │ │ └── sbin │ │ │ ├── a2dismod │ │ │ ├── a2enmod │ │ │ ├── apache-conf │ │ │ ├── apache-has-error │ │ │ └── apache-mpm │ ├── with-f8p.dockerfile │ ├── with-f8p.md │ ├── with-f8p │ │ ├── f8p-config.dockerfile │ │ ├── f8p-install.dockerfile │ │ └── rootfs │ │ │ ├── etc │ │ │ ├── caddy │ │ │ │ └── Caddyfile │ │ │ └── hooks │ │ │ │ └── server │ │ │ │ └── init-f8p │ │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ └── f8p-conf │ ├── with-nginx.dockerfile │ ├── with-nginx.md │ ├── with-nginx │ │ ├── nginx-config.dockerfile │ │ ├── nginx-install.dockerfile │ │ └── rootfs │ │ │ ├── etc │ │ │ ├── hooks │ │ │ │ ├── post-build │ │ │ │ │ └── 00-fix-nginx │ │ │ │ └── server │ │ │ │ │ └── init-nginx │ │ │ └── nginx │ │ │ │ ├── custom.d │ │ │ │ ├── 00-ext-brotli.conf │ │ │ │ ├── 00-ext-gzip.conf │ │ │ │ ├── 00-ext-http3.conf │ │ │ │ └── 01-common.conf │ │ │ │ ├── nginx.conf │ │ │ │ └── sites-enabled │ │ │ │ └── 00-default.conf │ │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── nginx-conf │ │ │ └── nginx-has-error │ ├── with-roadrunner.dockerfile │ ├── with-roadrunner.md │ └── with-roadrunner │ │ ├── roadrunner-config.dockerfile │ │ ├── roadrunner-install.dockerfile │ │ └── rootfs │ │ ├── etc │ │ └── hooks │ │ │ └── server │ │ │ └── init-roadrunner │ │ ├── source │ │ ├── .rr.yaml │ │ ├── composer.json │ │ └── index.php │ │ └── usr │ │ └── local │ │ └── bin │ │ └── roadrunner-conf └── webapps │ ├── bagisto │ ├── README.md │ ├── bagisto.dockerfile │ └── rootfs │ │ └── etc │ │ └── hooks │ │ └── application │ │ └── setup-bagisto │ ├── bedrock │ ├── README.md │ └── bedrock.dockerfile │ ├── cakephp4 │ ├── README.md │ └── cakephp4.dockerfile │ ├── cakephp5 │ ├── README.md │ └── cakephp5.dockerfile │ ├── codeigniter4 │ ├── README.md │ └── codeigniter4.dockerfile │ ├── coolify │ ├── README.md │ └── coolify.dockerfile │ ├── drupal │ ├── README.md │ └── drupal.dockerfile │ ├── espocrm │ ├── README.md │ ├── espocrm.dockerfile │ └── rootfs │ │ └── etc │ │ ├── apache2 │ │ └── custom.d │ │ │ ├── espocrm-websocket.conf │ │ │ └── espocrm.conf │ │ └── hooks │ │ └── application │ │ └── init-espocrm │ ├── flarum │ ├── README.md │ └── flarum.dockerfile │ ├── flightphp │ ├── README.md │ └── flightphp.dockerfile │ ├── grav │ ├── README.md │ └── grav.dockerfile │ ├── hyperf │ ├── README.md │ ├── hyperf.dockerfile │ └── rootfs │ │ └── etc │ │ ├── hooks │ │ └── application │ │ │ └── init-hyperf │ │ └── nginx │ │ └── sites-enabled │ │ └── 00-default.conf │ ├── hypervel │ ├── README.md │ ├── hypervel.dockerfile │ └── rootfs │ │ └── etc │ │ ├── hooks │ │ └── application │ │ │ └── init-hypervel │ │ └── nginx │ │ └── sites-enabled │ │ └── 00-default.conf │ ├── invoiceshelf │ ├── README.md │ └── invoiceshelf.dockerfile │ ├── kirby │ ├── README.md │ └── kirby.dockerfile │ ├── laminas │ ├── README.md │ └── laminas.dockerfile │ ├── laravel │ ├── README.md │ ├── laravel.dockerfile │ └── rootfs │ │ └── etc │ │ └── hooks │ │ └── application │ │ └── init-laravel │ ├── magento │ ├── README.md │ └── magento.dockerfile │ ├── matomo │ ├── README.md │ └── matomo.dockerfile │ ├── mautic │ ├── README.md │ └── mautic.dockerfile │ ├── phpmyadmin │ ├── README.md │ ├── phpmyadmin.dockerfile │ └── rootfs │ │ └── etc │ │ ├── hooks │ │ └── application │ │ │ └── init-phpmyadmin │ │ └── phpmyadmin-config.php │ ├── slim │ ├── README.md │ └── slim.dockerfile │ ├── spiral │ ├── README.md │ └── spiral.dockerfile │ ├── statamic │ ├── README.md │ └── statamic.dockerfile │ ├── sulu │ ├── README.md │ └── sulu.dockerfile │ ├── symfony │ ├── README.md │ └── symfony.dockerfile │ ├── wordpress │ ├── README.md │ ├── rootfs │ │ └── etc │ │ │ └── hooks │ │ │ ├── application │ │ │ └── init-wordpress │ │ │ ├── cleanup │ │ │ └── 20-clean-wp-cache │ │ │ └── create-project │ │ │ └── 00-install-wordpress │ └── wordpress.dockerfile │ ├── yii │ ├── README.md │ └── yii.dockerfile │ ├── zz-crater │ ├── README.md │ └── crater.dockerfile │ ├── zz-fuelphp │ ├── README.md │ └── fuelphp.dockerfile │ └── zz-phpixie │ ├── README.md │ └── phpixie.dockerfile └── tests ├── build-test.sh ├── compose-test.sh ├── docker-compose.yml ├── logs └── .gitignore ├── matrix-test.sh └── sbom-test.sh /.dockerfile-x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.dockerfile-x/README.md -------------------------------------------------------------------------------- /.dockerfile-x/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.dockerfile-x/build.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build-all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.github/workflows/build-all.yml -------------------------------------------------------------------------------- /.github/workflows/partial-build/00-s6-overlay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.github/workflows/partial-build/00-s6-overlay.yml -------------------------------------------------------------------------------- /.github/workflows/partial-build/01-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.github/workflows/partial-build/01-php.yml -------------------------------------------------------------------------------- /.github/workflows/partial-build/02-servers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.github/workflows/partial-build/02-servers.yml -------------------------------------------------------------------------------- /.github/workflows/partial-build/03-apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.github/workflows/partial-build/03-apps.yml -------------------------------------------------------------------------------- /.github/workflows/template-common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.github/workflows/template-common.yml -------------------------------------------------------------------------------- /.github/workflows/template-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.github/workflows/template-php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/_config.yml -------------------------------------------------------------------------------- /src/dummy.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/dummy.dockerfile -------------------------------------------------------------------------------- /src/dummy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/dummy.md -------------------------------------------------------------------------------- /src/php/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/.dockerignore -------------------------------------------------------------------------------- /src/php/base-os.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/base-os.dockerfile -------------------------------------------------------------------------------- /src/php/base-os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/base-os.md -------------------------------------------------------------------------------- /src/php/base-php.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/base-php.dockerfile -------------------------------------------------------------------------------- /src/php/base-s6.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/base-s6.dockerfile -------------------------------------------------------------------------------- /src/php/base-s6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/base-s6.md -------------------------------------------------------------------------------- /src/php/common/docker-php-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/docker-php-entrypoint -------------------------------------------------------------------------------- /src/php/common/os-common.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/os-common.dockerfile -------------------------------------------------------------------------------- /src/php/common/os-crontab.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/os-crontab.dockerfile -------------------------------------------------------------------------------- /src/php/common/os-s6-overlay.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/os-s6-overlay.dockerfile -------------------------------------------------------------------------------- /src/php/common/php-extensions.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/php-extensions.dockerfile -------------------------------------------------------------------------------- /src/php/common/php-ini-directives.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/php-ini-directives.dockerfile -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/bootstrap/00-bash-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/bootstrap/00-bash-profile -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/bootstrap/00-php-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/bootstrap/00-php-config -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/bootstrap/10-create-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/bootstrap/10-create-project -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/bootstrap/20-create-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/bootstrap/20-create-index -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/bootstrap/30-other-fixes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/bootstrap/30-other-fixes -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/cleanup/00-post-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/cleanup/00-post-build -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/cleanup/10-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/cleanup/10-deps -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/cleanup/10-php-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/cleanup/10-php-source -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/cleanup/10-upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/cleanup/10-upgrade -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/cleanup/~unneeded-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/cleanup/~unneeded-files -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/onbuild/00-greeting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/onbuild/00-greeting -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/onlive/00-debug-paths: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | debug-echo -i "Your application path is at ${APP_PATH}." 3 | -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/onready/~cache-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/onready/~cache-env -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/onready/~fix-ownership: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/onready/~fix-ownership -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/post-boot-non-s6/00-crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/post-boot-non-s6/00-crontab -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/post-boot/00-autorun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/post-boot/00-autorun -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/post-boot/00-crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/post-boot/00-crontab -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/hooks/post-boot/00-ssh-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/hooks/post-boot/00-ssh-server -------------------------------------------------------------------------------- /src/php/common/rootfs/etc/welcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/etc/welcome.txt -------------------------------------------------------------------------------- /src/php/common/rootfs/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/license -------------------------------------------------------------------------------- /src/php/common/rootfs/startup/99-greeting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/startup/99-greeting -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/app-index: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | echo $(realpath -mqs "$(app-root)/${APP_INDEX:-index.php}") 3 | -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/app-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/app-path -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/app-root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/app-root -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/autorun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/autorun -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/cleanup -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/debug-echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/debug-echo -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/download -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/env-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/env-default -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/env-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/env-path -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/greeting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/greeting -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/has-cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/has-cmd -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/has-s6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/has-s6 -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/hook -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/hook-loaded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/hook-loaded -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/in-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/in-app -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/is-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/is-debug -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/is-true: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/is-true -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/log-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/log-path -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/mkcert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/mkcert -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/msmtp-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/msmtp-wrapper -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/os-name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/os-name -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/ownership: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/ownership -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/pkg-add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/pkg-add -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/pkg-del: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/pkg-del -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/s6-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/s6-service -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/vergte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/vergte -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/wait-for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/wait-for -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/web-chown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/web-chown -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/web-cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/web-cmd -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/web-do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/web-do -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/web-mkdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/web-mkdir -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/web-wipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/web-wipe -------------------------------------------------------------------------------- /src/php/common/rootfs/usr/local/utils/with-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/rootfs/usr/local/utils/with-env -------------------------------------------------------------------------------- /src/php/common/shell-php/php-envvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/shell-php/php-envvars -------------------------------------------------------------------------------- /src/php/common/shell-php/phpaddmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/shell-php/phpaddmod -------------------------------------------------------------------------------- /src/php/common/shell-php/phpdelmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/common/shell-php/phpdelmod -------------------------------------------------------------------------------- /src/php/meta.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/meta.dockerfile -------------------------------------------------------------------------------- /src/php/with-apache.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache.dockerfile -------------------------------------------------------------------------------- /src/php/with-apache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache.md -------------------------------------------------------------------------------- /src/php/with-apache/apache-config.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache/apache-config.dockerfile -------------------------------------------------------------------------------- /src/php/with-apache/apache-install.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache/apache-install.dockerfile -------------------------------------------------------------------------------- /src/php/with-apache/rootfs/etc/apache2/apache2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache/rootfs/etc/apache2/apache2.conf -------------------------------------------------------------------------------- /src/php/with-apache/rootfs/etc/apache2/sites-enabled/00-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache/rootfs/etc/apache2/sites-enabled/00-default.conf -------------------------------------------------------------------------------- /src/php/with-apache/rootfs/etc/hooks/server/init-apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache/rootfs/etc/hooks/server/init-apache -------------------------------------------------------------------------------- /src/php/with-apache/rootfs/usr/local/sbin/a2dismod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache/rootfs/usr/local/sbin/a2dismod -------------------------------------------------------------------------------- /src/php/with-apache/rootfs/usr/local/sbin/a2enmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache/rootfs/usr/local/sbin/a2enmod -------------------------------------------------------------------------------- /src/php/with-apache/rootfs/usr/local/sbin/apache-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache/rootfs/usr/local/sbin/apache-conf -------------------------------------------------------------------------------- /src/php/with-apache/rootfs/usr/local/sbin/apache-has-error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache/rootfs/usr/local/sbin/apache-has-error -------------------------------------------------------------------------------- /src/php/with-apache/rootfs/usr/local/sbin/apache-mpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-apache/rootfs/usr/local/sbin/apache-mpm -------------------------------------------------------------------------------- /src/php/with-f8p.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-f8p.dockerfile -------------------------------------------------------------------------------- /src/php/with-f8p.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-f8p.md -------------------------------------------------------------------------------- /src/php/with-f8p/f8p-config.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-f8p/f8p-config.dockerfile -------------------------------------------------------------------------------- /src/php/with-f8p/f8p-install.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-f8p/f8p-install.dockerfile -------------------------------------------------------------------------------- /src/php/with-f8p/rootfs/etc/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-f8p/rootfs/etc/caddy/Caddyfile -------------------------------------------------------------------------------- /src/php/with-f8p/rootfs/etc/hooks/server/init-f8p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-f8p/rootfs/etc/hooks/server/init-f8p -------------------------------------------------------------------------------- /src/php/with-f8p/rootfs/usr/local/bin/f8p-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-f8p/rootfs/usr/local/bin/f8p-conf -------------------------------------------------------------------------------- /src/php/with-nginx.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx.dockerfile -------------------------------------------------------------------------------- /src/php/with-nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx.md -------------------------------------------------------------------------------- /src/php/with-nginx/nginx-config.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/nginx-config.dockerfile -------------------------------------------------------------------------------- /src/php/with-nginx/nginx-install.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/nginx-install.dockerfile -------------------------------------------------------------------------------- /src/php/with-nginx/rootfs/etc/hooks/post-build/00-fix-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/rootfs/etc/hooks/post-build/00-fix-nginx -------------------------------------------------------------------------------- /src/php/with-nginx/rootfs/etc/hooks/server/init-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/rootfs/etc/hooks/server/init-nginx -------------------------------------------------------------------------------- /src/php/with-nginx/rootfs/etc/nginx/custom.d/00-ext-brotli.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/rootfs/etc/nginx/custom.d/00-ext-brotli.conf -------------------------------------------------------------------------------- /src/php/with-nginx/rootfs/etc/nginx/custom.d/00-ext-gzip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/rootfs/etc/nginx/custom.d/00-ext-gzip.conf -------------------------------------------------------------------------------- /src/php/with-nginx/rootfs/etc/nginx/custom.d/00-ext-http3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/rootfs/etc/nginx/custom.d/00-ext-http3.conf -------------------------------------------------------------------------------- /src/php/with-nginx/rootfs/etc/nginx/custom.d/01-common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/rootfs/etc/nginx/custom.d/01-common.conf -------------------------------------------------------------------------------- /src/php/with-nginx/rootfs/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/rootfs/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /src/php/with-nginx/rootfs/etc/nginx/sites-enabled/00-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/rootfs/etc/nginx/sites-enabled/00-default.conf -------------------------------------------------------------------------------- /src/php/with-nginx/rootfs/usr/local/bin/nginx-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-nginx/rootfs/usr/local/bin/nginx-conf -------------------------------------------------------------------------------- /src/php/with-nginx/rootfs/usr/local/bin/nginx-has-error: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | exec with-env nginx -t 2>&1 | grep -qF -- "$@" 3 | -------------------------------------------------------------------------------- /src/php/with-roadrunner.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-roadrunner.dockerfile -------------------------------------------------------------------------------- /src/php/with-roadrunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-roadrunner.md -------------------------------------------------------------------------------- /src/php/with-roadrunner/roadrunner-config.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-roadrunner/roadrunner-config.dockerfile -------------------------------------------------------------------------------- /src/php/with-roadrunner/roadrunner-install.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-roadrunner/roadrunner-install.dockerfile -------------------------------------------------------------------------------- /src/php/with-roadrunner/rootfs/etc/hooks/server/init-roadrunner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-roadrunner/rootfs/etc/hooks/server/init-roadrunner -------------------------------------------------------------------------------- /src/php/with-roadrunner/rootfs/source/.rr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-roadrunner/rootfs/source/.rr.yaml -------------------------------------------------------------------------------- /src/php/with-roadrunner/rootfs/source/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-roadrunner/rootfs/source/composer.json -------------------------------------------------------------------------------- /src/php/with-roadrunner/rootfs/source/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-roadrunner/rootfs/source/index.php -------------------------------------------------------------------------------- /src/php/with-roadrunner/rootfs/usr/local/bin/roadrunner-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/php/with-roadrunner/rootfs/usr/local/bin/roadrunner-conf -------------------------------------------------------------------------------- /src/webapps/bagisto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/bagisto/README.md -------------------------------------------------------------------------------- /src/webapps/bagisto/bagisto.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/bagisto/bagisto.dockerfile -------------------------------------------------------------------------------- /src/webapps/bagisto/rootfs/etc/hooks/application/setup-bagisto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/bagisto/rootfs/etc/hooks/application/setup-bagisto -------------------------------------------------------------------------------- /src/webapps/bedrock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/bedrock/README.md -------------------------------------------------------------------------------- /src/webapps/bedrock/bedrock.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/bedrock/bedrock.dockerfile -------------------------------------------------------------------------------- /src/webapps/cakephp4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/cakephp4/README.md -------------------------------------------------------------------------------- /src/webapps/cakephp4/cakephp4.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/cakephp4/cakephp4.dockerfile -------------------------------------------------------------------------------- /src/webapps/cakephp5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/cakephp5/README.md -------------------------------------------------------------------------------- /src/webapps/cakephp5/cakephp5.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/cakephp5/cakephp5.dockerfile -------------------------------------------------------------------------------- /src/webapps/codeigniter4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/codeigniter4/README.md -------------------------------------------------------------------------------- /src/webapps/codeigniter4/codeigniter4.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/codeigniter4/codeigniter4.dockerfile -------------------------------------------------------------------------------- /src/webapps/coolify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/coolify/README.md -------------------------------------------------------------------------------- /src/webapps/coolify/coolify.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/coolify/coolify.dockerfile -------------------------------------------------------------------------------- /src/webapps/drupal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/drupal/README.md -------------------------------------------------------------------------------- /src/webapps/drupal/drupal.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/drupal/drupal.dockerfile -------------------------------------------------------------------------------- /src/webapps/espocrm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/espocrm/README.md -------------------------------------------------------------------------------- /src/webapps/espocrm/espocrm.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/espocrm/espocrm.dockerfile -------------------------------------------------------------------------------- /src/webapps/espocrm/rootfs/etc/apache2/custom.d/espocrm-websocket.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/espocrm/rootfs/etc/apache2/custom.d/espocrm-websocket.conf -------------------------------------------------------------------------------- /src/webapps/espocrm/rootfs/etc/apache2/custom.d/espocrm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/espocrm/rootfs/etc/apache2/custom.d/espocrm.conf -------------------------------------------------------------------------------- /src/webapps/espocrm/rootfs/etc/hooks/application/init-espocrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/espocrm/rootfs/etc/hooks/application/init-espocrm -------------------------------------------------------------------------------- /src/webapps/flarum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/flarum/README.md -------------------------------------------------------------------------------- /src/webapps/flarum/flarum.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/flarum/flarum.dockerfile -------------------------------------------------------------------------------- /src/webapps/flightphp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/flightphp/README.md -------------------------------------------------------------------------------- /src/webapps/flightphp/flightphp.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/flightphp/flightphp.dockerfile -------------------------------------------------------------------------------- /src/webapps/grav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/grav/README.md -------------------------------------------------------------------------------- /src/webapps/grav/grav.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/grav/grav.dockerfile -------------------------------------------------------------------------------- /src/webapps/hyperf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/hyperf/README.md -------------------------------------------------------------------------------- /src/webapps/hyperf/hyperf.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/hyperf/hyperf.dockerfile -------------------------------------------------------------------------------- /src/webapps/hyperf/rootfs/etc/hooks/application/init-hyperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/hyperf/rootfs/etc/hooks/application/init-hyperf -------------------------------------------------------------------------------- /src/webapps/hyperf/rootfs/etc/nginx/sites-enabled/00-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/hyperf/rootfs/etc/nginx/sites-enabled/00-default.conf -------------------------------------------------------------------------------- /src/webapps/hypervel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/hypervel/README.md -------------------------------------------------------------------------------- /src/webapps/hypervel/hypervel.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/hypervel/hypervel.dockerfile -------------------------------------------------------------------------------- /src/webapps/hypervel/rootfs/etc/hooks/application/init-hypervel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/hypervel/rootfs/etc/hooks/application/init-hypervel -------------------------------------------------------------------------------- /src/webapps/hypervel/rootfs/etc/nginx/sites-enabled/00-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/hypervel/rootfs/etc/nginx/sites-enabled/00-default.conf -------------------------------------------------------------------------------- /src/webapps/invoiceshelf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/invoiceshelf/README.md -------------------------------------------------------------------------------- /src/webapps/invoiceshelf/invoiceshelf.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/invoiceshelf/invoiceshelf.dockerfile -------------------------------------------------------------------------------- /src/webapps/kirby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/kirby/README.md -------------------------------------------------------------------------------- /src/webapps/kirby/kirby.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/kirby/kirby.dockerfile -------------------------------------------------------------------------------- /src/webapps/laminas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/laminas/README.md -------------------------------------------------------------------------------- /src/webapps/laminas/laminas.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/laminas/laminas.dockerfile -------------------------------------------------------------------------------- /src/webapps/laravel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/laravel/README.md -------------------------------------------------------------------------------- /src/webapps/laravel/laravel.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/laravel/laravel.dockerfile -------------------------------------------------------------------------------- /src/webapps/laravel/rootfs/etc/hooks/application/init-laravel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/laravel/rootfs/etc/hooks/application/init-laravel -------------------------------------------------------------------------------- /src/webapps/magento/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/magento/README.md -------------------------------------------------------------------------------- /src/webapps/magento/magento.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/magento/magento.dockerfile -------------------------------------------------------------------------------- /src/webapps/matomo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/matomo/README.md -------------------------------------------------------------------------------- /src/webapps/matomo/matomo.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/matomo/matomo.dockerfile -------------------------------------------------------------------------------- /src/webapps/mautic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/mautic/README.md -------------------------------------------------------------------------------- /src/webapps/mautic/mautic.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/mautic/mautic.dockerfile -------------------------------------------------------------------------------- /src/webapps/phpmyadmin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/phpmyadmin/README.md -------------------------------------------------------------------------------- /src/webapps/phpmyadmin/phpmyadmin.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/phpmyadmin/phpmyadmin.dockerfile -------------------------------------------------------------------------------- /src/webapps/phpmyadmin/rootfs/etc/hooks/application/init-phpmyadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/phpmyadmin/rootfs/etc/hooks/application/init-phpmyadmin -------------------------------------------------------------------------------- /src/webapps/phpmyadmin/rootfs/etc/phpmyadmin-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/phpmyadmin/rootfs/etc/phpmyadmin-config.php -------------------------------------------------------------------------------- /src/webapps/slim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/slim/README.md -------------------------------------------------------------------------------- /src/webapps/slim/slim.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/slim/slim.dockerfile -------------------------------------------------------------------------------- /src/webapps/spiral/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/spiral/README.md -------------------------------------------------------------------------------- /src/webapps/spiral/spiral.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/spiral/spiral.dockerfile -------------------------------------------------------------------------------- /src/webapps/statamic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/statamic/README.md -------------------------------------------------------------------------------- /src/webapps/statamic/statamic.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/statamic/statamic.dockerfile -------------------------------------------------------------------------------- /src/webapps/sulu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/sulu/README.md -------------------------------------------------------------------------------- /src/webapps/sulu/sulu.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/sulu/sulu.dockerfile -------------------------------------------------------------------------------- /src/webapps/symfony/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/symfony/README.md -------------------------------------------------------------------------------- /src/webapps/symfony/symfony.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/symfony/symfony.dockerfile -------------------------------------------------------------------------------- /src/webapps/wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/wordpress/README.md -------------------------------------------------------------------------------- /src/webapps/wordpress/rootfs/etc/hooks/application/init-wordpress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/wordpress/rootfs/etc/hooks/application/init-wordpress -------------------------------------------------------------------------------- /src/webapps/wordpress/rootfs/etc/hooks/cleanup/20-clean-wp-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/wordpress/rootfs/etc/hooks/cleanup/20-clean-wp-cache -------------------------------------------------------------------------------- /src/webapps/wordpress/rootfs/etc/hooks/create-project/00-install-wordpress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/wordpress/rootfs/etc/hooks/create-project/00-install-wordpress -------------------------------------------------------------------------------- /src/webapps/wordpress/wordpress.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/wordpress/wordpress.dockerfile -------------------------------------------------------------------------------- /src/webapps/yii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/yii/README.md -------------------------------------------------------------------------------- /src/webapps/yii/yii.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/yii/yii.dockerfile -------------------------------------------------------------------------------- /src/webapps/zz-crater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/zz-crater/README.md -------------------------------------------------------------------------------- /src/webapps/zz-crater/crater.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/zz-crater/crater.dockerfile -------------------------------------------------------------------------------- /src/webapps/zz-fuelphp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/zz-fuelphp/README.md -------------------------------------------------------------------------------- /src/webapps/zz-fuelphp/fuelphp.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/zz-fuelphp/fuelphp.dockerfile -------------------------------------------------------------------------------- /src/webapps/zz-phpixie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/zz-phpixie/README.md -------------------------------------------------------------------------------- /src/webapps/zz-phpixie/phpixie.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/src/webapps/zz-phpixie/phpixie.dockerfile -------------------------------------------------------------------------------- /tests/build-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/tests/build-test.sh -------------------------------------------------------------------------------- /tests/compose-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/tests/compose-test.sh -------------------------------------------------------------------------------- /tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/tests/docker-compose.yml -------------------------------------------------------------------------------- /tests/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/matrix-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/tests/matrix-test.sh -------------------------------------------------------------------------------- /tests/sbom-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/php/HEAD/tests/sbom-test.sh --------------------------------------------------------------------------------