18 lines
No EOL
401 B
YAML
18 lines
No EOL
401 B
YAML
version: "2.3"
|
|
|
|
services:
|
|
test-nginx-7.3:
|
|
image: gone/php:nginx-7.3
|
|
volumes:
|
|
- ./test-webapp/php:/app/public
|
|
ports:
|
|
- 127.0.0.73:80:80
|
|
test-nginx-7.4:
|
|
image: gone/php:nginx-7.4
|
|
volumes:
|
|
- ./test-webapp/php:/app/public
|
|
ports:
|
|
- 127.0.0.74:80:80
|
|
environment:
|
|
DEBUG_MODE: "on"
|
|
XDEBUG_CONFIG: "client_host=172.17.0.1 log=/tmp/xdebug.log" |