Skip to content

Commit

Permalink
Use meritoo/php Docker image (instead of deprecated meritoo/php7)
Browse files Browse the repository at this point in the history
  • Loading branch information
meritoo committed Feb 20, 2021
1 parent fc196c7 commit 557f3d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 557f3d9

Please sign in to comment.