Skip to content

v0.9.0

Latest

Choose a tag to compare

@github-actions github-actions released this 12 Oct 18:35

🐳 Docker Socket Proxy v0.9.0

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

📦 Installation

Docker (Recommended)

TCP:

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

Socket:

docker pull hypolas/dockershield:${GITHUB_REF_NAME#v}
docker run -d --name dockershield \
  -v /var/run/docker.sock:/var/run/docker.sock:ro \
  -v /tmp:/tmp \
  -e LISTEN_SOCKET=unix:///tmp/dockershield.sock \
  -e CONTAINERS=1 -e IMAGES=1 \
  hypolas/dockershield:${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/dockershield.sock
export CONTAINERS=1
export IMAGES=1

chmod +x dockershield-linux-amd64
./dockershield-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/dockershield/commits/v0.9.0