Skip to content

v0.2.0-beta.09

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 05 Oct 22:35
· 10 commits to main since this release

🐳 Docker Socket Proxy v0.2.0-beta.09

Secure Docker Socket HTTP Proxy with advanced granular filtering for CI/CD pipelines.

📦 Installation

Docker (Recommended)

TCP:

docker pull hypolas/proxy-docker:${GITHUB_REF_NAME#v}
docker run -d --name docker-proxy \
  -v /var/run/docker.sock:/var/run/docker.sock:ro \
  -p 2375:2375 \
  -e CONTAINERS=1 -e IMAGES=1 \
  hypolas/proxy-docker:${GITHUB_REF_NAME#v}

Socket:

docker pull hypolas/proxy-docker:${GITHUB_REF_NAME#v}
docker run -d --name docker-proxy \
  -v /var/run/docker.sock:/var/run/docker.sock:ro \
  -v /tmp:/tmp \
  -e LISTEN_SOCKET=unix:///tmp/docker-proxy.sock \
  -e CONTAINERS=1 -e IMAGES=1 \
  hypolas/proxy-docker:${GITHUB_REF_NAME#v}

Binary Download

Download the appropriate binary for your platform below, make it executable, and run:

# Linux amd64 example

export DOCKER_HOST=unix:///var/run/docker.sock
export LISTEN_SOCKET=unix:///tmp/docker_proxy.sock
export CONTAINERS=1
export IMAGES=1

chmod +x docker-proxy-linux-amd64
./docker-proxy-linux-amd64

🏗️ Supported Platforms

Docker Images:

  • linux/amd64 (x86_64)
  • linux/arm64 (ARM 64-bit)
  • linux/arm/v7 (ARM 32-bit)

Binaries:

  • Linux amd64, arm64, armv7
  • macOS amd64, arm64 (Apple Silicon)
  • Windows amd64

📋 What's Changed

See commit history for detailed changes.

📚 Documentation

📞 Support


Full Changelog: https://github.com/hypolas/docker-proxy/commits/v0.2.0-beta.09