今回詰まったのでメモ。WSLのUbuntuはsystemdが無効化されているため、dockerのプロキシの設定は/etc/systemd/system/docker.service.d/http-proxy.confではなく/etc/init.d/dockerで行う。
export HTTP_PROXY=http://xxx.xxx.xxx.xxx:xxxx
export HTTPS_PROXY=http://xxx.xx.xxx.xxx:xxxx
export NO_PROXY=localhost,127.0.0.1,docker-registry.example.com
コメント