Fix docker-compose-javawork.yml

With docker-compose 1.10-rc1 build from this file was failing. Fix this by using the new build syntax with explicit `context` & `dockerfile`.
This commit is contained in:
Christophe Labouisse 2017-01-15 22:25:58 +01:00 committed by GitHub
parent 0334f60f3e
commit 81f18a27f6

View File

@ -25,7 +25,9 @@ services:
- back-tier - back-tier
worker: worker:
build: ./worker/Dockerfile.j build:
context: ./worker
dockerfile: Dockerfile.j
networks: networks:
- back-tier - back-tier