Use meritoo/php Docker image (instead of deprecated meritoo/php7)

This commit is contained in:
Meritoo
2021-02-20 16:20:57 +01:00
parent 8fec0db05f
commit e38dda200a

View File

@@ -5,7 +5,7 @@ services:
# Required to run project # Required to run project
# #
php: php:
image: meritoo/php7 image: meritoo/php
container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-php container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-php
entrypoint: php entrypoint: php
command: -S 0.0.0.0:9999 command: -S 0.0.0.0:9999
@@ -14,7 +14,7 @@ services:
volumes: volumes:
- .:/var/www/application:cached - .:/var/www/application:cached
composer: composer:
image: meritoo/php7 image: meritoo/php
container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-composer container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-composer
entrypoint: php -d memory_limit=-1 /usr/local/bin/composer entrypoint: php -d memory_limit=-1 /usr/local/bin/composer
volumes: volumes:
@@ -23,7 +23,7 @@ services:
# Required to run PHPUnit's tests # Required to run PHPUnit's tests
# #
phpunit: phpunit:
image: meritoo/php7 image: meritoo/php
container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-phpunit container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-phpunit
entrypoint: ./vendor/bin/phpunit entrypoint: ./vendor/bin/phpunit
command: --version command: --version