You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
516 B
YAML
31 lines
516 B
YAML
version: '3'
|
|
|
|
services:
|
|
|
|
gd:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/gd.Dockerfile
|
|
volumes:
|
|
- .:/code
|
|
working_dir: /code
|
|
command: ./vendor/bin/phpunit
|
|
|
|
imagick:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/imagick.Dockerfile
|
|
volumes:
|
|
- .:/code
|
|
working_dir: /code
|
|
command: ./vendor/bin/phpunit
|
|
|
|
gmp:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/gmp.Dockerfile
|
|
volumes:
|
|
- .:/code
|
|
working_dir: /code
|
|
command: ./vendor/bin/phpunit
|