mirror of https://github.com/docker/compose.git
fix path to build context
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
0f4bcb9f17
commit
1e2f0c75c5
|
@ -1,15 +1,15 @@
|
||||||
services:
|
services:
|
||||||
db:
|
db:
|
||||||
build: db
|
build: aci-demo/db
|
||||||
image: gtardif/sentences-db
|
image: gtardif/sentences-db
|
||||||
|
|
||||||
words:
|
words:
|
||||||
build: words
|
build: aci-demo/words
|
||||||
image: gtardif/sentences-api
|
image: gtardif/sentences-api
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
web:
|
web:
|
||||||
build: web
|
build: aci-demo/web
|
||||||
image: gtardif/sentences-web
|
image: gtardif/sentences-web
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
Loading…
Reference in New Issue