fix linking containers to php-fpm instead of php
This commit is contained in:
parent
504c9c59d5
commit
efd062fd88
@ -7,13 +7,13 @@ services:
|
|||||||
nginx:
|
nginx:
|
||||||
build: ./nginx
|
build: ./nginx
|
||||||
volumes_from:
|
volumes_from:
|
||||||
- php
|
- php-fpm
|
||||||
volumes:
|
volumes:
|
||||||
- ./logs/nginx/:/var/log/nginx
|
- ./logs/nginx/:/var/log/nginx
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
links:
|
links:
|
||||||
- php
|
- php-fpm
|
||||||
|
|
||||||
### PHP-FPM Container #######################################
|
### PHP-FPM Container #######################################
|
||||||
|
|
||||||
@ -52,7 +52,7 @@ services:
|
|||||||
MYSQL_PASSWORD: secret
|
MYSQL_PASSWORD: secret
|
||||||
MYSQL_ROOT_PASSWORD: root
|
MYSQL_ROOT_PASSWORD: root
|
||||||
links:
|
links:
|
||||||
- php
|
- php-fpm
|
||||||
|
|
||||||
### PostgreSQL Container ####################################
|
### PostgreSQL Container ####################################
|
||||||
|
|
||||||
@ -67,7 +67,7 @@ services:
|
|||||||
POSTGRES_USER: homestead
|
POSTGRES_USER: homestead
|
||||||
POSTGRES_PASSWORD: secret
|
POSTGRES_PASSWORD: secret
|
||||||
links:
|
links:
|
||||||
- php
|
- php-fpm
|
||||||
|
|
||||||
### MariaDB Container #######################################
|
### MariaDB Container #######################################
|
||||||
|
|
||||||
@ -83,7 +83,7 @@ services:
|
|||||||
MYSQL_PASSWORD: secret
|
MYSQL_PASSWORD: secret
|
||||||
MYSQL_ROOT_PASSWORD: root
|
MYSQL_ROOT_PASSWORD: root
|
||||||
links:
|
links:
|
||||||
- php
|
- php-fpm
|
||||||
|
|
||||||
### Redis Container #########################################
|
### Redis Container #########################################
|
||||||
|
|
||||||
@ -94,7 +94,7 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "6379:6379"
|
- "6379:6379"
|
||||||
links:
|
links:
|
||||||
- php
|
- php-fpm
|
||||||
|
|
||||||
### Memcached Container #####################################
|
### Memcached Container #####################################
|
||||||
|
|
||||||
@ -105,7 +105,7 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "11211:11211"
|
- "11211:11211"
|
||||||
links:
|
links:
|
||||||
- php
|
- php-fpm
|
||||||
|
|
||||||
### Beanstalkd Container ####################################
|
### Beanstalkd Container ####################################
|
||||||
|
|
||||||
@ -115,7 +115,7 @@ services:
|
|||||||
- "11300:11300"
|
- "11300:11300"
|
||||||
privileged: true
|
privileged: true
|
||||||
links:
|
links:
|
||||||
- php
|
- php-fpm
|
||||||
|
|
||||||
### Beanstalkd-Console Container ############################
|
### Beanstalkd-Console Container ############################
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user