Docker – Forbidden path outside the build context
一、问题
ERROR: Forbidden path outside the build context: …/broker-service/broker-service.dockerfile ()
二、确定问题
context: …/broker-service 路径问题
version: '3'
services:
broker-service:
build:
context: ../broker-service
dockerfile: ../broker-service/broker-service.dockerfile
restart: always
ports:
- "8080:80"
deploy:
mode: replicated
replicas: 1
authentication-service: