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