Added source tree, index.php
This commit is contained in:
parent
8043e58884
commit
484363d74f
|
@ -8,3 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
## [0.0.1] - 2017-02-07
|
||||
### Added
|
||||
- Initial commit
|
||||
|
||||
## [0.0.2] - 2017-02-07
|
||||
### Added
|
||||
- source structure
|
||||
- html/index.php
|
||||
|
||||
### Changed
|
||||
- docker-compose.yml, added mysql
|
||||
|
|
|
@ -7,7 +7,7 @@ services:
|
|||
- "80:80"
|
||||
volumes:
|
||||
- ./:/var/www
|
||||
- ./public:/var/www/html
|
||||
- ./html:/var/www/html
|
||||
- ./conf.d:/etc/nginx/conf.d
|
||||
links:
|
||||
- php
|
||||
|
@ -17,7 +17,7 @@ services:
|
|||
build: ./docker/php
|
||||
volumes:
|
||||
- ./:/var/www
|
||||
- ./public:/var/www/html
|
||||
- ./html:/var/www/html
|
||||
restart: always
|
||||
mysql:
|
||||
image: mysql:5.7
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
<?php phpinfo();
|
Loading…
Reference in New Issue