docker / setup-buildx-action

GitHub Action to set up Docker Buildx
https://github.com/marketplace/actions/docker-setup-buildx
Apache License 2.0
906 stars 142 forks source link

"/" is added to proxy URL #235

Closed wahlflo closed 1 year ago

wahlflo commented 1 year ago

Behaviour

I have my self hosted runner behind a proxy. I configured the proxy URL in the .env file globally for the runner:

http_proxy=http://proxy.organization.com:5000
https_proxy=http://proxy.organization.com:5000

The runner picks up this config but add a "/" at the end of the proxy URL. Which ends up in a URL like http://proxy.organization.com:5000/

Expected behaviour

I would expect the URL to be exactly the same as defined in the conig

Actual behaviour

Proxy URL is http://proxy.organization.com:5000/ which makes the action at whole not usable as the proxy config is wrong.

wahlflo commented 1 year ago

turned out that the proxy was not stable^^