Fixed incorrect php-fpm container mapping

This commit is contained in:
Jack Fletcher 2016-07-13 10:44:17 +01:00
parent 5f99478c76
commit dca0545293

View File

@ -2,19 +2,6 @@ version: '2'
services:
### PHP-FPM Container #######################################
php-fpm:
build:
context: ./php-fpm
dockerfile: Dockerfile-70
volumes_from:
- volumes_data
expose:
- "9000"
links:
- workspace
### Laravel Application Code Container ######################
volumes_source:
@ -49,6 +36,19 @@ services:
links:
- php-fpm
### PHP-FPM Container #######################################
php-fpm:
build:
context: ./php-fpm
dockerfile: Dockerfile-70
volumes_from:
- volumes_source
expose:
- "9000"
links:
- workspace
### MySQL Container #########################################
mysql: