├── .alexignore ├── .alexrc.yaml ├── .ecrc ├── .editorconfig ├── .env.dist ├── .github ├── issue_template.md ├── pull_request_template.md └── workflows │ └── main.yml ├── .gitignore ├── .hadolint.yaml ├── .husky ├── pre-commit └── pre-push ├── .jscpd.json ├── .remarkrc ├── .spelling ├── .yamllint.yaml ├── 1.12.1 ├── open │ ├── php7.0 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.2 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.0 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.2 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.12.4 ├── open │ ├── php7.0 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.2 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.0 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.2 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.13.1 ├── open │ ├── php7.0 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.0 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.13.2 ├── open │ ├── php7.0 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.0 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.13 ├── open │ ├── php7.0 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.0 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.14.1 ├── open │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.14.2 ├── open │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.14 ├── open │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.15.1 ├── open │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.15.2 ├── open │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.15 ├── open │ ├── php7.1 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.1 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.16.1 ├── open │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.16.2 ├── open │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.16.3 ├── open │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.16 ├── open │ ├── php7.2 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.2 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.17.1 ├── open │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.17.2 ├── open │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.17 ├── open │ ├── php7.3 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.3 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.18.1 ├── open │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.18.2 ├── open │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.18 ├── open │ └── php7.4 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ └── php7.4 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── 1.19 ├── open │ ├── php7.4 │ │ ├── apache │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php.ini │ │ │ ├── setup.sh │ │ │ └── vhost.conf │ │ └── fpm │ │ │ ├── CHECKSUMS │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── is-installed.sh │ │ │ ├── php-fpm.ini │ │ │ ├── php.ini │ │ │ └── setup.sh │ └── php8.0 │ │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh └── pro │ ├── php7.4 │ ├── apache │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php.ini │ │ ├── setup.sh │ │ └── vhost.conf │ └── fpm │ │ ├── CHECKSUMS │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── is-installed.sh │ │ ├── php-fpm.ini │ │ ├── php.ini │ │ └── setup.sh │ └── php8.0 │ ├── apache │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php.ini │ ├── setup.sh │ └── vhost.conf │ └── fpm │ ├── CHECKSUMS │ ├── Dockerfile │ ├── entrypoint.sh │ ├── is-installed.sh │ ├── php-fpm.ini │ ├── php.ini │ └── setup.sh ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Dockerfile-ci ├── LICENSE ├── README.md ├── SECURITY.md ├── apache-socket ├── Dockerfile ├── entrypoint.sh └── i-doit.conf ├── apache ├── Dockerfile ├── entrypoint.sh └── i-doit.conf ├── docker-compose-apache.yml ├── docker-compose-ci.yml ├── docker-compose-fpm.yml ├── docker-compose-sockets.yml ├── docker.sh ├── mariadb └── 99-i-doit.cnf ├── package.json └── requirements.txt /.alexignore: -------------------------------------------------------------------------------- 1 | # Taken from external content: 2 | CODE_OF_CONDUCT.md 3 | -------------------------------------------------------------------------------- /.alexrc.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | allow: 3 | # We use the technical term "host" a lot: 4 | - host-hostess 5 | - hostesses-hosts 6 | # It's about the language: 7 | - german 8 | -------------------------------------------------------------------------------- /.ecrc: -------------------------------------------------------------------------------- 1 | { 2 | "Exclude": [ 3 | "node_modules", 4 | "LICENSE" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | end_of_line = lf 7 | insert_final_newline = true 8 | charset = utf-8 9 | indent_style = space 10 | indent_size = 4 11 | 12 | [*.{yml,yaml}] 13 | indent_size = 2 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /package-lock.json 3 | /node_modules/ 4 | -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | ignored: 3 | # Ignore version pinning in Debian's apt install: 4 | - DL3008 5 | # Allow multiple consecutive RUN statements: 6 | - DL3059 7 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run pre-commit 2 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | npm run pre-push 2 | -------------------------------------------------------------------------------- /.jscpd.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignore": [ 3 | "**/node_modules/**", 4 | "**/_*/**", 5 | "**/_*" 6 | ], 7 | "reporters": [ 8 | "console" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /.spelling: -------------------------------------------------------------------------------- 1 | add-ons 2 | Affero 3 | AGPLv3+ 4 | backend 5 | Changelog 6 | Dockerized 7 | e.g. 8 | GmbH 9 | Heisig 10 | i-doit 11 | MariaDB 12 | Memcached 13 | MySQL 14 | Nextcloud 15 | Nginx 16 | OpenPGP 17 | PHP-FPM 18 | sexualized 19 | synetics 20 | tbd 21 | Versioning 22 | x86_64 23 | -------------------------------------------------------------------------------- /1.12.1/open/php7.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.1/open/php7.0/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.1/open/php7.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.1/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.1/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.1/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.1/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.1/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.1/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.1/pro/php7.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.1/pro/php7.0/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.1/pro/php7.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.1/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.1/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.1/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.1/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.1/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.1/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.4/open/php7.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.4/open/php7.0/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.4/open/php7.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.4/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.4/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.4/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.4/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.4/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.4/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.4/pro/php7.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.4/pro/php7.0/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.4/pro/php7.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.4/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.4/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.4/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.12.4/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.12.4/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.12.4/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.1/open/php7.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.1/open/php7.0/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.1/open/php7.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.1/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.1/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.1/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.1/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.1/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.1/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.1/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.1/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.1/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.1/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.1/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.1/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.0/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.1/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.2/open/php7.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.2/open/php7.0/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.2/open/php7.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.2/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.2/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.2/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.2/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.2/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.2/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.2/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.2/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.2/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.2/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.2/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.2/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.0/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13.2/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13/open/php7.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13/open/php7.0/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13/open/php7.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13/pro/php7.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13/pro/php7.0/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13/pro/php7.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.13/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.13/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.13/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.1/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.1/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.1/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.1/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.1/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.1/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.1/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.1/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.1/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.1/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.1/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.1/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.1/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.2/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.2/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.2/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.2/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.2/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.2/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.2/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.2/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.2/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.2/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.2/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.2/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14.2/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.14/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.14/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.14/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.1/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.1/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.1/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.1/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.1/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.1/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.1/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.1/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.1/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.1/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.1/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.1/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.1/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.2/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.2/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.2/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.2/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.2/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.2/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.2/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.2/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.2/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.2/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.2/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.2/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15.2/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15/open/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15/open/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15/open/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15/pro/php7.1/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15/pro/php7.1/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15/pro/php7.1/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.15/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.15/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.15/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.1/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.1/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.1/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.1/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.1/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.1/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.1/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.1/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.1/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.1/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.1/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.1/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.1/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.1/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.1/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.1/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.1/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.1/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.2/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.2/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.2/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.2/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.2/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.2/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.2/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.2/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.2/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.2/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.2/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.2/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.2/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.2/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.2/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.2/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.2/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.2/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.3/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.3/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.3/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.3/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.3/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.3/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.3/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.3/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.3/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.3/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.3/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.3/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.3/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.3/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.3/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16.3/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16.3/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16.3/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16/open/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16/open/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16/open/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16/pro/php7.2/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16/pro/php7.2/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16/pro/php7.2/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.16/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.16/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.16/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17.1/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17.1/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17.1/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17.1/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17.1/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17.1/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17.1/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17.1/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17.1/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17.1/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17.1/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17.1/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17.2/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17.2/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17.2/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17.2/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17.2/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17.2/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17.2/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17.2/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17.2/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17.2/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17.2/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17.2/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17/open/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17/open/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17/open/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17/pro/php7.3/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17/pro/php7.3/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17/pro/php7.3/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.17/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.17/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.17/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.18.1/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.18.1/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.18.1/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.18.1/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.18.1/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.18.1/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.18.2/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.18.2/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.18.2/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.18.2/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.18.2/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.18.2/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.18/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.18/open/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.18/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.18/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.18/pro/php7.4/apache/vhost.conf: -------------------------------------------------------------------------------- 1 | ServerName idoitdocker 2 | 3 | 4 | ServerAdmin i-doit@idoitdocker.local 5 | 6 | DirectoryIndex index.php 7 | DocumentRoot /var/www/html/ 8 | 9 | 10 | AllowOverride None 11 | 12 | ## Insert content from .htaccess file here 13 | 14 | 15 | LogLevel info 16 | ErrorLog /dev/stderr 17 | TransferLog /dev/stdout 18 | 19 | -------------------------------------------------------------------------------- /1.18/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.19/open/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.19/open/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.19/open/php8.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.19/open/php8.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.19/pro/php7.4/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.19/pro/php7.4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /1.19/pro/php8.0/apache/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | } 13 | 14 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 15 | execute 16 | exec "$@" 17 | fi 18 | -------------------------------------------------------------------------------- /1.19/pro/php8.0/fpm/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | IFS=$'\n\t' 5 | 6 | : "${IDOIT_DEFAULT_TENANT:=""}" 7 | 8 | function execute { 9 | if [[ -n "$IDOIT_DEFAULT_TENANT" ]]; then 10 | is-installed.sh || setup.sh 11 | fi 12 | 13 | chown www-data:www-data -R /var/www/html/ 14 | } 15 | 16 | if [[ "${BASH_SOURCE[0]}" = "$0" ]]; then 17 | execute 18 | exec "$@" 19 | fi 20 | -------------------------------------------------------------------------------- /docker-compose-ci.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: '3.8' 3 | 4 | services: 5 | 6 | docker: 7 | build: 8 | context: . 9 | dockerfile: Dockerfile-ci 10 | args: 11 | USER_ID: 1000 12 | GROUP_ID: 1000 13 | volumes: 14 | - "${PWD}:/docker/" 15 | - home:/home/docker 16 | cap_drop: 17 | - ALL 18 | 19 | volumes: 20 | home: 21 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | docker-compose 2 | wheel 3 | yamllint 4 | --------------------------------------------------------------------------------