add apache2 container.

This commit is contained in:
Eric Pfeiffer
2016-07-27 19:35:58 -05:00
parent 33b701afdc
commit 5e0e120950
3 changed files with 43 additions and 9 deletions

View File

@ -51,6 +51,23 @@ services:
links:
- php-fpm
### Apache Server Container ##################################
apache2:
build:
context: ./apache2
args:
- PHP_SOCKET="php-fpm:9000"
volumes_from:
- volumes_source
volumes:
- ./logs/apache2:/var/log/apache2
ports:
- "80:80"
- "443:443"
links:
- php-fpm
### HHVM Container ##########################################
hhvm: