php-extension-check/docker-compose.yaml

29 lines
570 B
YAML
Raw Permalink Normal View History

2021-05-08 21:09:48 +00:00
version: "3.7"
services:
2021-05-08 22:49:47 +00:00
php7.2:
build: docker/php7.2
container_name: extension-check-7.2
volumes:
- .:/app:rw
tty: true
extra_hosts:
- "host.docker.internal:host-gateway"
2021-05-08 21:09:48 +00:00
php7.4:
build: docker/php7.4
container_name: extension-check-7.4
volumes:
- .:/app:rw
tty: true
2021-05-08 22:49:47 +00:00
extra_hosts:
- "host.docker.internal:host-gateway"
php8.0:
build: docker/php8.0
container_name: extension-check-8.0
volumes:
- .:/app:rw
tty: true
2021-05-08 21:09:48 +00:00
extra_hosts:
- "host.docker.internal:host-gateway"