docker 17.07 버전부터 좀 쉽게.. proxy 설정을 할 수 있다. 


참고 https://docs.docker.com/network/proxy/#configure-the-docker-client


도커 클라이언트에서 아래 설정 파일에 

~/.docker/config.json



다음 내용을 추가한다.



{
 "proxies":
 {
   "default":
   {
     "httpProxy": "http://127.0.0.1:3001",
     "noProxy": "*.test.example.com,.example2.com"
   }
 }
}


Posted by '김용환'
,