Skip to content

Commit efd062f

Browse files
committed
fix linking containers to php-fpm instead of php
1 parent 504c9c5 commit efd062f

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

docker-compose.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ services:
77
nginx:
88
build: ./nginx
99
volumes_from:
10-
- php
10+
- php-fpm
1111
volumes:
1212
- ./logs/nginx/:/var/log/nginx
1313
ports:
1414
- "80:80"
1515
links:
16-
- php
16+
- php-fpm
1717

1818
### PHP-FPM Container #######################################
1919

@@ -52,7 +52,7 @@ services:
5252
MYSQL_PASSWORD: secret
5353
MYSQL_ROOT_PASSWORD: root
5454
links:
55-
- php
55+
- php-fpm
5656

5757
### PostgreSQL Container ####################################
5858

@@ -67,7 +67,7 @@ services:
6767
POSTGRES_USER: homestead
6868
POSTGRES_PASSWORD: secret
6969
links:
70-
- php
70+
- php-fpm
7171

7272
### MariaDB Container #######################################
7373

@@ -83,7 +83,7 @@ services:
8383
MYSQL_PASSWORD: secret
8484
MYSQL_ROOT_PASSWORD: root
8585
links:
86-
- php
86+
- php-fpm
8787

8888
### Redis Container #########################################
8989

@@ -94,7 +94,7 @@ services:
9494
ports:
9595
- "6379:6379"
9696
links:
97-
- php
97+
- php-fpm
9898

9999
### Memcached Container #####################################
100100

@@ -105,7 +105,7 @@ services:
105105
ports:
106106
- "11211:11211"
107107
links:
108-
- php
108+
- php-fpm
109109

110110
### Beanstalkd Container ####################################
111111

@@ -115,7 +115,7 @@ services:
115115
- "11300:11300"
116116
privileged: true
117117
links:
118-
- php
118+
- php-fpm
119119

120120
### Beanstalkd-Console Container ############################
121121

0 commit comments

Comments
 (0)