個人のメモ書きです。ドのつく初心者なので変なところがあったらご指摘願います。
Ubuntuのバージョンを18.04にしたらdockerコマンドが通らなくなった
会社のPCをUbuntu18.04にしたらproxyの設定云々でdockerコマンドが通らなくなった。
/ets/systemed/system/docker.service.d/http-proxy.conf
[Service]
Environment="HTTP_PROXY=http://example%40hoge.com:${HTTP_PROXY_PASS}@proxysrv:port/"
HTTP_PROXY_USERにメールアドレスを使用(example%40hoge.com)しています。
理由はわからないですがURLエンコードの必要がなくなったのか、HTTP_PROXY_USERの設定部分=example%40hoge.com
をexample@hoge.com
にすることで解決。
/ets/systemed/system/docker.service.d/http-proxy.conf
[Service]
Environment="HTTP_PROXY=http://example@hoge.com:${HTTP_PROXY_PASS}@proxysrv:port/"