fix linking containers to php-fpm instead of php

This commit is contained in:
Mahmoud Zalt 2016-05-18 02:54:23 +03:00
parent 504c9c59d5
commit efd062fd88
1 changed files with 8 additions and 8 deletions

View File

@ -7,13 +7,13 @@ services:
nginx:
build: ./nginx
volumes_from:
- php
- php-fpm
volumes:
- ./logs/nginx/:/var/log/nginx
ports:
- "80:80"
links:
- php
- php-fpm
### PHP-FPM Container #######################################
@ -52,7 +52,7 @@ services:
MYSQL_PASSWORD: secret
MYSQL_ROOT_PASSWORD: root
links:
- php
- php-fpm
### PostgreSQL Container ####################################
@ -67,7 +67,7 @@ services:
POSTGRES_USER: homestead
POSTGRES_PASSWORD: secret
links:
- php
- php-fpm
### MariaDB Container #######################################
@ -83,7 +83,7 @@ services:
MYSQL_PASSWORD: secret
MYSQL_ROOT_PASSWORD: root
links:
- php
- php-fpm
### Redis Container #########################################
@ -94,7 +94,7 @@ services:
ports:
- "6379:6379"
links:
- php
- php-fpm
### Memcached Container #####################################
@ -105,7 +105,7 @@ services:
ports:
- "11211:11211"
links:
- php
- php-fpm
### Beanstalkd Container ####################################
@ -115,7 +115,7 @@ services:
- "11300:11300"
privileged: true
links:
- php
- php-fpm
### Beanstalkd-Console Container ############################