Proxy settings and password encoding

Hi everyone, could someone help me in an issue with HTTP_PROXY?
I’m running on Docker 1.11 and CentOS7, I’ve made my http-proxy.conf file in the right place but when I try to run something the proxy cannot resolve the url because (I guess) the proxy password that docker uses is encoded.

Indeed, this is the output of my info command

Http Proxy: http://meteo:4991e3c0dbc84a7a8b3a709b8204df53eteo2010@proxy2.arpa.local:8080
Https Proxy: https://meteo:4991e3c0dbc84a7a8b3a709b8204df53eteo2010@proxy2.arpa.local:8080

while this is the http-proxy.conf
Environment=“HTTP_PROXY=http://meteo:my-password@proxy2.arpa.local:8080” “HTTPS_PROXY=https://meteo:my-password@proxy2.arpa.local:8080”

Where did I go wrong?

Uhm…could be the issue is a special character (’%’) in the password?

Solved: it was a special char encoding problem. Changed my password substituting ‘%’ with ‘%25’ and I could run it!