mac - docker 创建镜像添加本地代理

  • docker build 命令

    docker-compose build \
    	--build-arg http_proxy=http://host.docker.internal:[代理端口] \
    	--build-arg https_proxy=http://host.docker.internal:[代理端口]
    
  • docker compose

    build: 
    	context: .
    	  args:
    		- http_proxy=http://host.docker.internall:[代理端口]
    		- https_proxy=http://host.docker.internal:[代理端口]
    
posted @ 2022-03-08 11:52  cc-31415926  阅读(415)  评论(0编辑  收藏  举报