With docker-compose 1.10-rc1 build from this file was failing. Fix this by using the new build syntax with explicit `context` & `dockerfile`.
@@ -25,7 +25,9 @@ services:
- back-tier
worker:
- build: ./worker/Dockerfile.j
+ build:
+ context: ./worker
+ dockerfile: Dockerfile.j
networks:
@@ -49,4 +51,4 @@ volumes:
front-tier:
- back-tier:
+ back-tier: