Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pass Go module proxy variables through docker-go #1121

Merged
merged 1 commit into from
Sep 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions tools/docker-go
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,31 @@ DOCKER_RUN_ARGS="--network=host"

parse_args "${@}"

# Pass through relevant Go variables, from the config or environment.
go_env=( )
for i in GOPROXY GONOPROXY GOPRIVATE ; do
if command -v go >/dev/null 2>&1 ; then
govar="$(go env ${i})"
if [ -n "${govar}" ] ; then
go_env[${#go_env[@]}]="--env=${i}=${govar}"
fi
elif [ -n "${!i}" ] ; then
go_env[${#go_env[@]}]="--env=${i}=${!i}"
fi
done

# Go accepts both lower and uppercase proxy variables, pass both through.
proxy_env=( )
for i in http_proxy https_proxy no_proxy HTTP_PROXY HTTPS_PROXY NO_PROXY; do
if [ -n "${!i}" ]; then
proxy_env[${#proxy_env[@]}]="--env=$i=${!i}"
fi
for i in http_proxy https_proxy no_proxy HTTP_PROXY HTTPS_PROXY NO_PROXY ; do
if [ -n "${!i}" ]; then
proxy_env[${#proxy_env[@]}]="--env=$i=${!i}"
fi
done

docker run --rm \
-e GOPRIVATE='*' \
-e GOCACHE='/tmp/.cache' \
-e GOPATH='/tmp/go' \
"${go_env[@]}" \
"${proxy_env[@]}" \
--user "$(id -u):$(id -g)" \
--security-opt label:disable \
Expand Down