도커 구성, net:host에서 컨테이너 실행 도커 컴포지트를 이용하여 "호스트"넷에 3개의 서비스를 생성하고 싶습니다.여기 내 도커 컴포지트.yml 파일이 있습니다. version: '2' services: mysql: image: mysql net: "host" nginx: image: nginx net: "host" app: image: tomcat net: "host" 다음 오류가 발생했습니다. $ docker-compose up [31mERROR[0m: Validation failed in file '.\docker-compose.yml', reason(s): Unsupported config option for services.app: 'net' Unsupported config option ..