├── .ci ├── build_images.sh ├── push_images.sh ├── run_tests.sh └── test_template.sh ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── push.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Docs ├── debugging.md ├── getting-started.md ├── macos_docker_sync │ ├── docker-compose.mac.yml.dist │ ├── docker-sync.yml.dist │ └── mac.md ├── symfony │ ├── compose.md │ ├── docker-compose.yml.fpm_dist │ ├── nginx.conf │ └── upload.conf ├── testing.md ├── troubleshooting.md └── xdebug │ ├── phpstorm_configuration.png │ ├── phpstorm_server.png │ ├── xdebug_enabled.png │ └── xdebug_helper.png ├── LICENSE ├── README.md ├── fpm ├── 7.2 │ └── Dockerfile └── 7.3 │ └── Dockerfile ├── node ├── 10 │ └── Dockerfile ├── 12 │ └── Dockerfile └── 14 │ └── Dockerfile ├── php ├── 7.2 │ ├── Dockerfile │ └── files │ │ ├── akeneo.ini │ │ ├── entrypoint.sh │ │ └── sury.list └── 7.3 │ ├── Dockerfile │ └── files │ ├── akeneo.ini │ ├── entrypoint.sh │ └── sury.list └── tests ├── fpm ├── common │ └── .gitkeep ├── php-7.2 │ └── php_version.sh └── run_image_tests.sh ├── node ├── 10 │ └── .gitkeep ├── common │ └── .gitkeep └── run_image_tests.sh └── php ├── 7.2 └── php_version.sh ├── common ├── datetime_zone.sh ├── display_errors.sh ├── error_reporting.sh ├── memory_limit.sh ├── post_max_size.sh └── upload_max_filesize.sh └── run_image_tests.sh /.ci/build_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/.ci/build_images.sh -------------------------------------------------------------------------------- /.ci/push_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/.ci/push_images.sh -------------------------------------------------------------------------------- /.ci/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/.ci/run_tests.sh -------------------------------------------------------------------------------- /.ci/test_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/.ci/test_template.sh -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docker-compose.yml 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/debugging.md -------------------------------------------------------------------------------- /Docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/getting-started.md -------------------------------------------------------------------------------- /Docs/macos_docker_sync/docker-compose.mac.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/macos_docker_sync/docker-compose.mac.yml.dist -------------------------------------------------------------------------------- /Docs/macos_docker_sync/docker-sync.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/macos_docker_sync/docker-sync.yml.dist -------------------------------------------------------------------------------- /Docs/macos_docker_sync/mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/macos_docker_sync/mac.md -------------------------------------------------------------------------------- /Docs/symfony/compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/symfony/compose.md -------------------------------------------------------------------------------- /Docs/symfony/docker-compose.yml.fpm_dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/symfony/docker-compose.yml.fpm_dist -------------------------------------------------------------------------------- /Docs/symfony/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/symfony/nginx.conf -------------------------------------------------------------------------------- /Docs/symfony/upload.conf: -------------------------------------------------------------------------------- 1 | client_max_body_size 20m; 2 | -------------------------------------------------------------------------------- /Docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/testing.md -------------------------------------------------------------------------------- /Docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/troubleshooting.md -------------------------------------------------------------------------------- /Docs/xdebug/phpstorm_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/xdebug/phpstorm_configuration.png -------------------------------------------------------------------------------- /Docs/xdebug/phpstorm_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/xdebug/phpstorm_server.png -------------------------------------------------------------------------------- /Docs/xdebug/xdebug_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/xdebug/xdebug_enabled.png -------------------------------------------------------------------------------- /Docs/xdebug/xdebug_helper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/Docs/xdebug/xdebug_helper.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/README.md -------------------------------------------------------------------------------- /fpm/7.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/fpm/7.2/Dockerfile -------------------------------------------------------------------------------- /fpm/7.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/fpm/7.3/Dockerfile -------------------------------------------------------------------------------- /node/10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/node/10/Dockerfile -------------------------------------------------------------------------------- /node/12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/node/12/Dockerfile -------------------------------------------------------------------------------- /node/14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/node/14/Dockerfile -------------------------------------------------------------------------------- /php/7.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/php/7.2/Dockerfile -------------------------------------------------------------------------------- /php/7.2/files/akeneo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/php/7.2/files/akeneo.ini -------------------------------------------------------------------------------- /php/7.2/files/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/php/7.2/files/entrypoint.sh -------------------------------------------------------------------------------- /php/7.2/files/sury.list: -------------------------------------------------------------------------------- 1 | deb https://packages.sury.org/php/ stretch main 2 | -------------------------------------------------------------------------------- /php/7.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/php/7.3/Dockerfile -------------------------------------------------------------------------------- /php/7.3/files/akeneo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/php/7.3/files/akeneo.ini -------------------------------------------------------------------------------- /php/7.3/files/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/php/7.3/files/entrypoint.sh -------------------------------------------------------------------------------- /php/7.3/files/sury.list: -------------------------------------------------------------------------------- 1 | deb https://packages.sury.org/php/ stretch main 2 | -------------------------------------------------------------------------------- /tests/fpm/common/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fpm/php-7.2/php_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/fpm/php-7.2/php_version.sh -------------------------------------------------------------------------------- /tests/fpm/run_image_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/fpm/run_image_tests.sh -------------------------------------------------------------------------------- /tests/node/10/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/node/common/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/node/run_image_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/node/run_image_tests.sh -------------------------------------------------------------------------------- /tests/php/7.2/php_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/php/7.2/php_version.sh -------------------------------------------------------------------------------- /tests/php/common/datetime_zone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/php/common/datetime_zone.sh -------------------------------------------------------------------------------- /tests/php/common/display_errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/php/common/display_errors.sh -------------------------------------------------------------------------------- /tests/php/common/error_reporting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/php/common/error_reporting.sh -------------------------------------------------------------------------------- /tests/php/common/memory_limit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/php/common/memory_limit.sh -------------------------------------------------------------------------------- /tests/php/common/post_max_size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/php/common/post_max_size.sh -------------------------------------------------------------------------------- /tests/php/common/upload_max_filesize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/php/common/upload_max_filesize.sh -------------------------------------------------------------------------------- /tests/php/run_image_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/Dockerfiles/HEAD/tests/php/run_image_tests.sh --------------------------------------------------------------------------------