angstwad/docker.ubuntu

set http proxy wrongly for systemd

lijun-hanson opened this issue · 1 comments

The current generated proxy.conf for systemd docker is following:
[Service]
Environment="http_proxy=

https_proxy= no_proxy="
It doesn't work, and shall be changed to following result:
[Service]
Environment="http_proxy=" "https_proxy=" "no_proxy="
It could be found in docker reference doc: https://docs.docker.com/engine/admin/systemd/#httphttps-proxy

This is fixed with PR #196