Secure by Design, Built for Speed, Hardened Container Images on a minimal base CleanStart OS.
50K+
Verified STUNNEL Container Image
A hardened, minimal STUNNEL container image built from source with verifiable software provenance and an SBOM, designed for secure production deployments.
For additional versions including FIPS support, explore CleanStart Images — secure, hardened container images
Pull Latest Image Download the container image from the registry
docker pull cleanstart/stunnel:latest
docker pull cleanstart/stunnel:latest-dev
Basic Run Run the container with basic configuration
docker run -d --name stunnel \
-v $(pwd)/stunnel.conf:/etc/stunnel/stunnel.conf \
-p 8443:443 \
cleanstart/stunnel:latest
Production Deployment Deploy with production security settings
docker run -d --name stunnel-dev \
--read-only \
--security-opt=no-new-privileges \
--user 1000:1000 \
-v $(pwd):/etc/stunnel:ro \
-p 8443:443 \
cleanstart/stunnel:latest-dev
Volume Mount Mount configuration and certificate files
docker run -v $(pwd):/etc/stunnel:ro \
cleanstart/stunnel:latest
Port Forwarding Run with custom port mappings
docker run -p 8443:443 cleanstart/stunnel:latest
Why Use CleanStart Images
Content type
Image
Digest
sha256:29f9f2eda…
Size
28.7 MB
Last updated
about 2 hours ago
docker pull cleanstart/stunnel