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