Extremely trivial test application.
This commit is contained in:
parent
c84508d28c
commit
9c39549e72
2 changed files with 17 additions and 0 deletions
15
docker-compose.yml
Normal file
15
docker-compose.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
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
|
2
test-webapp/php/index.php
Normal file
2
test-webapp/php/index.php
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
phpinfo();
|
Loading…
Reference in a new issue