We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm not sure if it is currently supported. I hope that, similar to the build process, proxy configuration can be supported.
- name: Set up Docker BuildX uses: docker/setup-buildx-action@v3 with: driver-opts: | env.http_proxy=${{ env.http_proxy }} env.https_proxy=${{ env.https_proxy }} "env.no_proxy='${{ env.no_proxy }}'"
- name: Build and push uses: docker/build-push-action@v4 with: context: . file: Dockerfile tags: demo/app:latest build-args: | "http_proxy='${{ env.http_proxy }}'" "https_proxy='${{ env.https_proxy }}'"
The text was updated successfully, but these errors were encountered:
This action uses docker pull command to pull the image so it should work if you configure proxies in docker client config https://docs.docker.com/engine/cli/proxy/#configure-the-docker-client.
docker pull
Sorry, something went wrong.
thanks
No branches or pull requests
Description
I'm not sure if it is currently supported. I hope that, similar to the build process, proxy configuration can be supported.
eg docker/setup-buildx-action
eg docker/build-push-action
The text was updated successfully, but these errors were encountered: