Skip to content

Commit c9c3f03

Browse files
peterjaapJeroenBoersma
authored andcommitted
Fixed build contexts
Build contexts contained version number even though we now moved to using args, avoiding the "Service phpXX has neither an image nor a build context specified. At least one must be provided." error.
1 parent 6202870 commit c9c3f03

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docker-compose.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -19,30 +19,30 @@ services:
1919
mailcatch:
2020
image: mailhog/mailhog
2121
network_mode: bridge
22-
23-
php70:
22+
23+
php56:
2424
build:
25-
context: build/dist/php70
25+
context: build/dist/php
2626
args:
27-
- FROM_TAG=php7-fpm
27+
- FROM_TAG=php5-fpm
2828
links:
2929
- db
3030
- mailcatch
3131
- redis
3232
network_mode: bridge
33-
php56:
33+
php70:
3434
build:
35-
context: build/dist/php56
35+
context: build/dist/php
3636
args:
37-
- FROM_TAG=php5-fpm
37+
- FROM_TAG=php7-fpm
3838
links:
3939
- db
4040
- mailcatch
4141
- redis
4242
network_mode: bridge
4343
php71:
4444
build:
45-
context: build/dist/php71
45+
context: build/dist/php
4646
args:
4747
- FROM_TAG=php71-fpm
4848
links:
@@ -52,7 +52,7 @@ services:
5252
network_mode: bridge
5353
php72:
5454
build:
55-
context: build/dist/php72
55+
context: build/dist/php
5656
args:
5757
- FROM_TAG=php72-fpm
5858
links:
@@ -62,7 +62,7 @@ services:
6262
network_mode: bridge
6363
php73:
6464
build:
65-
context: build/dist/php73
65+
context: build/dist/php
6666
args:
6767
- FROM_TAG=php73-fpm
6868
links:

0 commit comments

Comments
 (0)