├── .gitattributes ├── .gitignore ├── LICENSE ├── docky ├── readme.md ├── v1 ├── 8.1 │ ├── apache │ │ └── Dockerfile │ └── nginx │ │ └── Dockerfile ├── 8.2 │ ├── apache │ │ └── Dockerfile │ └── nginx │ │ └── Dockerfile ├── 8.3 │ ├── apache │ │ └── Dockerfile │ └── nginx │ │ └── Dockerfile ├── 8.4 │ ├── apache │ │ └── Dockerfile │ └── nginx │ │ └── Dockerfile ├── base │ └── Dockerfile ├── common │ ├── apache-conf │ │ ├── apache2.conf │ │ └── default.conf │ ├── install-nvm.sh │ ├── nginx-conf │ │ ├── default.conf │ │ └── nginx.conf │ ├── php │ │ ├── 20-xdebug.ini │ │ └── php.ini │ ├── start-container │ ├── supervisord.apache.conf │ └── supervisord.nginx.conf ├── database │ ├── mariadb │ │ └── create-testing-database.sh │ ├── mysql │ │ ├── create-database.sh │ │ └── create-testing-database.sh │ └── pgsql │ │ └── create-testing-database.sql ├── docky ├── public │ └── index.php ├── readme.dev.md ├── readme.md ├── scripts │ └── build-images.sh ├── stubs │ ├── .gitignore.stub │ └── services │ │ ├── app-service.stub.yml │ │ ├── mailpit-service.stub.yml │ │ ├── mysql-service.stub.yml │ │ ├── pgsql-service.stub.yml │ │ └── redis-service.stub.yml └── tests │ ├── docker-compose.apache81.yml │ ├── docker-compose.apache82.yml │ ├── docker-compose.apache83.yml │ ├── docker-compose.apache84.yml │ ├── docker-compose.nginx81.yml │ ├── docker-compose.nginx82.yml │ ├── docker-compose.nginx83.yml │ └── docker-compose.nginx84.yml └── v2 ├── .tools └── .docky │ ├── commands │ ├── add_service.sh │ ├── doctor.sh │ ├── generate.sh │ ├── list_services.sh │ ├── open_docs.sh │ └── snippet.sh │ ├── docky.sh │ ├── lib │ ├── common.sh │ ├── merger.sh │ ├── utils.sh │ └── version.sh │ ├── readme.md │ └── stubs │ ├── app.sh │ ├── mysql.sh │ ├── postgres.sh │ └── redis.sh ├── Makefile ├── common ├── build │ └── scripts │ │ ├── mani-docker-install-js-runtime.sh │ │ ├── mani-docker-install-system-deps.sh │ │ ├── mani-php-ext-core.sh │ │ ├── mani-php-ext-db.sh │ │ └── mani-php-ext-images.sh └── runtime │ ├── configs │ ├── apache │ │ ├── apache2.conf │ │ └── sites-available │ │ │ └── 000-default.conf │ ├── frankenphp │ │ └── Caddyfile │ ├── nginx │ │ ├── conf.d │ │ │ └── default.conf │ │ └── nginx.conf │ └── php │ │ ├── 90-docker-custom.ini │ │ └── 92-docker-php-ext-xdebug.ini │ ├── healthchecks │ ├── healthcheck-apache.sh │ ├── healthcheck-frankenphp.sh │ └── healthcheck-nginx.sh │ ├── profile │ └── zz-history.sh │ ├── s6 │ ├── cont-finish.d │ │ └── 99-shutdown-log.sh │ ├── cont-init.d │ │ ├── 10-init.sh │ │ └── 20-overlay.sh │ ├── env │ │ └── APP_ENV │ └── variants │ │ ├── apache │ │ └── services.d │ │ │ └── apache │ │ │ ├── finish │ │ │ ├── log │ │ │ └── run │ │ │ ├── run │ │ │ └── type │ │ ├── frankenphp │ │ └── services.d │ │ │ └── frankenphp │ │ │ ├── log │ │ │ └── run │ │ │ ├── run │ │ │ └── type │ │ └── nginx │ │ └── services.d │ │ ├── nginx │ │ ├── finish │ │ ├── log │ │ │ └── run │ │ ├── run │ │ └── type │ │ └── php-fpm │ │ ├── finish │ │ ├── log │ │ └── run │ │ ├── run │ │ └── type │ └── sanity │ └── mani-sanity.sh ├── database ├── mariadb │ └── create-testing-database.sh ├── mysql │ ├── create-database.sh │ └── create-testing-database.sh └── pgsql │ └── create-testing-database.sql ├── docker-compose.test.yml ├── docky ├── docs ├── docs │ ├── architecture.md │ ├── config-reference.md │ ├── configuration.md │ ├── contributing.md │ ├── conventions.md │ ├── docker-101.md │ ├── docky-cli.md │ ├── extensions.md │ ├── faq.md │ ├── getting-started.md │ ├── healthchecks.md │ ├── index.md │ ├── js-runtimes.md │ ├── recipes.md │ ├── s6-runtime.md │ ├── sanity-tools.md │ ├── security.md │ ├── services-apache.md │ ├── services-frankenphp.md │ ├── services-nginx.md │ └── troubleshooting.md └── mkdocs.yml ├── examples ├── .docker-snippets │ ├── overlays │ │ └── helloworld-svc │ │ │ └── services.d │ │ │ └── hello-wolrd │ │ │ ├── finish │ │ │ ├── run │ │ │ └── type │ ├── php │ │ └── custom.ini │ ├── readme.md │ └── scripts │ │ └── hw.sh ├── .docker-snippets_laravel_optimization │ ├── config.server │ │ ├── apache │ │ │ ├── apache2.prod.conf │ │ │ └── sites-available │ │ │ │ ├── laravel.dev.conf │ │ │ │ └── laravel.prod.conf │ │ └── nginx │ │ │ ├── conf.d │ │ │ ├── 00default.dev.conf │ │ │ └── 00default.prod.conf │ │ │ ├── nginx.override.dev.conf │ │ │ └── nginx.override.prod.conf │ ├── howto.md │ ├── php-fpm.d │ │ ├── www.dev.conf │ │ └── www.prod.conf │ ├── php │ │ ├── custom.dev.ini │ │ └── custom.prod.ini │ └── scripts │ │ ├── clean.sh │ │ └── test-mail.sh └── docker-compose-files │ ├── docker-compose.healthcheck.yml │ ├── docker-compose.js.yml │ └── docker-compose.simple.yml ├── overlays ├── locales │ └── cont-init.d │ │ └── 10-locales.sh └── queue-worker │ └── services.d │ └── queue-worker │ ├── log │ └── run │ ├── run │ └── type ├── php ├── 8.1 │ ├── apache │ │ └── Dockerfile │ ├── frankenphp │ │ └── Dockerfile │ └── nginx │ │ └── Dockerfile ├── 8.2 │ ├── apache │ │ └── Dockerfile │ ├── frankenphp │ │ └── Dockerfile │ └── nginx │ │ └── Dockerfile ├── 8.3 │ ├── apache │ │ └── Dockerfile │ ├── frankenphp │ │ └── Dockerfile │ └── nginx │ │ └── Dockerfile └── 8.4 │ ├── apache │ └── Dockerfile │ ├── frankenphp │ └── Dockerfile │ └── nginx │ └── Dockerfile ├── public ├── 34.php ├── index.php └── text.txt ├── readme.dev.md ├── readme.md ├── scripts ├── ci-matrix.sh ├── lint-dockerfiles.sh ├── lint-shell.sh ├── smoke.sh └── validate-s6.sh └── tests ├── Makefile ├── fixtures ├── overlays │ └── hello-svc │ │ └── services.d │ │ └── hello │ │ ├── log │ │ └── run │ │ ├── run │ │ └── type └── php │ └── 99-test.ini ├── goss-nginx.yaml ├── readme.txt ├── scripts ├── test-matrix.sh └── test-runtime.sh └── test-docky.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/LICENSE -------------------------------------------------------------------------------- /docky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/docky -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/readme.md -------------------------------------------------------------------------------- /v1/8.1/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/8.1/apache/Dockerfile -------------------------------------------------------------------------------- /v1/8.1/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/8.1/nginx/Dockerfile -------------------------------------------------------------------------------- /v1/8.2/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/8.2/apache/Dockerfile -------------------------------------------------------------------------------- /v1/8.2/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/8.2/nginx/Dockerfile -------------------------------------------------------------------------------- /v1/8.3/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/8.3/apache/Dockerfile -------------------------------------------------------------------------------- /v1/8.3/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/8.3/nginx/Dockerfile -------------------------------------------------------------------------------- /v1/8.4/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/8.4/apache/Dockerfile -------------------------------------------------------------------------------- /v1/8.4/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/8.4/nginx/Dockerfile -------------------------------------------------------------------------------- /v1/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/base/Dockerfile -------------------------------------------------------------------------------- /v1/common/apache-conf/apache2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/common/apache-conf/apache2.conf -------------------------------------------------------------------------------- /v1/common/apache-conf/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/common/apache-conf/default.conf -------------------------------------------------------------------------------- /v1/common/install-nvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/common/install-nvm.sh -------------------------------------------------------------------------------- /v1/common/nginx-conf/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/common/nginx-conf/default.conf -------------------------------------------------------------------------------- /v1/common/nginx-conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/common/nginx-conf/nginx.conf -------------------------------------------------------------------------------- /v1/common/php/20-xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/common/php/20-xdebug.ini -------------------------------------------------------------------------------- /v1/common/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/common/php/php.ini -------------------------------------------------------------------------------- /v1/common/start-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/common/start-container -------------------------------------------------------------------------------- /v1/common/supervisord.apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/common/supervisord.apache.conf -------------------------------------------------------------------------------- /v1/common/supervisord.nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/common/supervisord.nginx.conf -------------------------------------------------------------------------------- /v1/database/mariadb/create-testing-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/database/mariadb/create-testing-database.sh -------------------------------------------------------------------------------- /v1/database/mysql/create-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/database/mysql/create-database.sh -------------------------------------------------------------------------------- /v1/database/mysql/create-testing-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/database/mysql/create-testing-database.sh -------------------------------------------------------------------------------- /v1/database/pgsql/create-testing-database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/database/pgsql/create-testing-database.sql -------------------------------------------------------------------------------- /v1/docky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v1/docky -------------------------------------------------------------------------------- /v1/public/index.php: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /v2/common/runtime/healthchecks/healthcheck-frankenphp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | curl -fsS http://127.0.0.1:80/ > /dev/null 4 | -------------------------------------------------------------------------------- /v2/common/runtime/healthchecks/healthcheck-nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/healthchecks/healthcheck-nginx.sh -------------------------------------------------------------------------------- /v2/common/runtime/profile/zz-history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/profile/zz-history.sh -------------------------------------------------------------------------------- /v2/common/runtime/s6/cont-finish.d/99-shutdown-log.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 -------------------------------------------------------------------------------- /v2/common/runtime/s6/cont-init.d/10-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/s6/cont-init.d/10-init.sh -------------------------------------------------------------------------------- /v2/common/runtime/s6/cont-init.d/20-overlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/s6/cont-init.d/20-overlay.sh -------------------------------------------------------------------------------- /v2/common/runtime/s6/env/APP_ENV: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/apache/services.d/apache/finish: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/apache/services.d/apache/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/s6/variants/apache/services.d/apache/log/run -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/apache/services.d/apache/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/s6/variants/apache/services.d/apache/run -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/apache/services.d/apache/type: -------------------------------------------------------------------------------- 1 | longrun -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/frankenphp/services.d/frankenphp/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/s6/variants/frankenphp/services.d/frankenphp/log/run -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/frankenphp/services.d/frankenphp/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/s6/variants/frankenphp/services.d/frankenphp/run -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/frankenphp/services.d/frankenphp/type: -------------------------------------------------------------------------------- 1 | longrun -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/nginx/services.d/nginx/finish: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/nginx/services.d/nginx/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/s6/variants/nginx/services.d/nginx/log/run -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/nginx/services.d/nginx/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/s6/variants/nginx/services.d/nginx/run -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/nginx/services.d/nginx/type: -------------------------------------------------------------------------------- 1 | longrun -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/nginx/services.d/php-fpm/finish: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/nginx/services.d/php-fpm/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/s6/variants/nginx/services.d/php-fpm/log/run -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/nginx/services.d/php-fpm/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/s6/variants/nginx/services.d/php-fpm/run -------------------------------------------------------------------------------- /v2/common/runtime/s6/variants/nginx/services.d/php-fpm/type: -------------------------------------------------------------------------------- 1 | longrun -------------------------------------------------------------------------------- /v2/common/runtime/sanity/mani-sanity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/common/runtime/sanity/mani-sanity.sh -------------------------------------------------------------------------------- /v2/database/mariadb/create-testing-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/database/mariadb/create-testing-database.sh -------------------------------------------------------------------------------- /v2/database/mysql/create-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/database/mysql/create-database.sh -------------------------------------------------------------------------------- /v2/database/mysql/create-testing-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/database/mysql/create-testing-database.sh -------------------------------------------------------------------------------- /v2/database/pgsql/create-testing-database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/database/pgsql/create-testing-database.sql -------------------------------------------------------------------------------- /v2/docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docker-compose.test.yml -------------------------------------------------------------------------------- /v2/docky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docky -------------------------------------------------------------------------------- /v2/docs/docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/architecture.md -------------------------------------------------------------------------------- /v2/docs/docs/config-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/config-reference.md -------------------------------------------------------------------------------- /v2/docs/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/configuration.md -------------------------------------------------------------------------------- /v2/docs/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/contributing.md -------------------------------------------------------------------------------- /v2/docs/docs/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/conventions.md -------------------------------------------------------------------------------- /v2/docs/docs/docker-101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/docker-101.md -------------------------------------------------------------------------------- /v2/docs/docs/docky-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/docky-cli.md -------------------------------------------------------------------------------- /v2/docs/docs/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/extensions.md -------------------------------------------------------------------------------- /v2/docs/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/faq.md -------------------------------------------------------------------------------- /v2/docs/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/getting-started.md -------------------------------------------------------------------------------- /v2/docs/docs/healthchecks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/healthchecks.md -------------------------------------------------------------------------------- /v2/docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/index.md -------------------------------------------------------------------------------- /v2/docs/docs/js-runtimes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/js-runtimes.md -------------------------------------------------------------------------------- /v2/docs/docs/recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/recipes.md -------------------------------------------------------------------------------- /v2/docs/docs/s6-runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/s6-runtime.md -------------------------------------------------------------------------------- /v2/docs/docs/sanity-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/sanity-tools.md -------------------------------------------------------------------------------- /v2/docs/docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/security.md -------------------------------------------------------------------------------- /v2/docs/docs/services-apache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/services-apache.md -------------------------------------------------------------------------------- /v2/docs/docs/services-frankenphp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/services-frankenphp.md -------------------------------------------------------------------------------- /v2/docs/docs/services-nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/services-nginx.md -------------------------------------------------------------------------------- /v2/docs/docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/docs/troubleshooting.md -------------------------------------------------------------------------------- /v2/docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/docs/mkdocs.yml -------------------------------------------------------------------------------- /v2/examples/.docker-snippets/overlays/helloworld-svc/services.d/hello-wolrd/finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets/overlays/helloworld-svc/services.d/hello-wolrd/finish -------------------------------------------------------------------------------- /v2/examples/.docker-snippets/overlays/helloworld-svc/services.d/hello-wolrd/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets/overlays/helloworld-svc/services.d/hello-wolrd/run -------------------------------------------------------------------------------- /v2/examples/.docker-snippets/overlays/helloworld-svc/services.d/hello-wolrd/type: -------------------------------------------------------------------------------- 1 | longrun -------------------------------------------------------------------------------- /v2/examples/.docker-snippets/php/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets/php/custom.ini -------------------------------------------------------------------------------- /v2/examples/.docker-snippets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets/readme.md -------------------------------------------------------------------------------- /v2/examples/.docker-snippets/scripts/hw.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "Hello, world!" 4 | -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/config.server/apache/apache2.prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/config.server/apache/apache2.prod.conf -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/config.server/apache/sites-available/laravel.dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/config.server/apache/sites-available/laravel.dev.conf -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/config.server/apache/sites-available/laravel.prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/config.server/apache/sites-available/laravel.prod.conf -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/config.server/nginx/conf.d/00default.dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/config.server/nginx/conf.d/00default.dev.conf -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/config.server/nginx/conf.d/00default.prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/config.server/nginx/conf.d/00default.prod.conf -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/config.server/nginx/nginx.override.dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/config.server/nginx/nginx.override.dev.conf -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/config.server/nginx/nginx.override.prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/config.server/nginx/nginx.override.prod.conf -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/howto.md -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/php-fpm.d/www.dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/php-fpm.d/www.dev.conf -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/php-fpm.d/www.prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/php-fpm.d/www.prod.conf -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/php/custom.dev.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/php/custom.dev.ini -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/php/custom.prod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/php/custom.prod.ini -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/scripts/clean.sh -------------------------------------------------------------------------------- /v2/examples/.docker-snippets_laravel_optimization/scripts/test-mail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/.docker-snippets_laravel_optimization/scripts/test-mail.sh -------------------------------------------------------------------------------- /v2/examples/docker-compose-files/docker-compose.healthcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/docker-compose-files/docker-compose.healthcheck.yml -------------------------------------------------------------------------------- /v2/examples/docker-compose-files/docker-compose.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/docker-compose-files/docker-compose.js.yml -------------------------------------------------------------------------------- /v2/examples/docker-compose-files/docker-compose.simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/examples/docker-compose-files/docker-compose.simple.yml -------------------------------------------------------------------------------- /v2/overlays/locales/cont-init.d/10-locales.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/overlays/locales/cont-init.d/10-locales.sh -------------------------------------------------------------------------------- /v2/overlays/queue-worker/services.d/queue-worker/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/overlays/queue-worker/services.d/queue-worker/log/run -------------------------------------------------------------------------------- /v2/overlays/queue-worker/services.d/queue-worker/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/overlays/queue-worker/services.d/queue-worker/run -------------------------------------------------------------------------------- /v2/overlays/queue-worker/services.d/queue-worker/type: -------------------------------------------------------------------------------- 1 | longrun -------------------------------------------------------------------------------- /v2/php/8.1/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.1/apache/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.1/frankenphp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.1/frankenphp/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.1/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.1/nginx/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.2/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.2/apache/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.2/frankenphp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.2/frankenphp/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.2/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.2/nginx/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.3/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.3/apache/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.3/frankenphp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.3/frankenphp/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.3/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.3/nginx/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.4/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.4/apache/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.4/frankenphp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.4/frankenphp/Dockerfile -------------------------------------------------------------------------------- /v2/php/8.4/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/php/8.4/nginx/Dockerfile -------------------------------------------------------------------------------- /v2/public/34.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/public/34.php -------------------------------------------------------------------------------- /v2/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/public/index.php -------------------------------------------------------------------------------- /v2/public/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/public/text.txt -------------------------------------------------------------------------------- /v2/readme.dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/readme.dev.md -------------------------------------------------------------------------------- /v2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/readme.md -------------------------------------------------------------------------------- /v2/scripts/ci-matrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/scripts/ci-matrix.sh -------------------------------------------------------------------------------- /v2/scripts/lint-dockerfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/scripts/lint-dockerfiles.sh -------------------------------------------------------------------------------- /v2/scripts/lint-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/scripts/lint-shell.sh -------------------------------------------------------------------------------- /v2/scripts/smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/scripts/smoke.sh -------------------------------------------------------------------------------- /v2/scripts/validate-s6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/scripts/validate-s6.sh -------------------------------------------------------------------------------- /v2/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/tests/Makefile -------------------------------------------------------------------------------- /v2/tests/fixtures/overlays/hello-svc/services.d/hello/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/tests/fixtures/overlays/hello-svc/services.d/hello/log/run -------------------------------------------------------------------------------- /v2/tests/fixtures/overlays/hello-svc/services.d/hello/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/tests/fixtures/overlays/hello-svc/services.d/hello/run -------------------------------------------------------------------------------- /v2/tests/fixtures/overlays/hello-svc/services.d/hello/type: -------------------------------------------------------------------------------- 1 | longrun -------------------------------------------------------------------------------- /v2/tests/fixtures/php/99-test.ini: -------------------------------------------------------------------------------- 1 | ; prove we can override ini at runtime 2 | memory_limit = 384M 3 | -------------------------------------------------------------------------------- /v2/tests/goss-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/tests/goss-nginx.yaml -------------------------------------------------------------------------------- /v2/tests/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/tests/readme.txt -------------------------------------------------------------------------------- /v2/tests/scripts/test-matrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/tests/scripts/test-matrix.sh -------------------------------------------------------------------------------- /v2/tests/scripts/test-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/tests/scripts/test-runtime.sh -------------------------------------------------------------------------------- /v2/tests/test-docky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techgonia-devjio/php-contenv/HEAD/v2/tests/test-docky.sh --------------------------------------------------------------------------------