Skip to content

mbta/stunnel-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stunnel Docker images

Stunnel is a "proxy designed to add TLS encryption functionality to existing clients and servers without any changes in the programs' code".

This Dockerfile allows it to run as a Windows container, in situations where a Linux container isn't usable, or on Alpine Linux.

Usage (Windows)

cd windows
docker build -t stunnel .
docker run -p <container port>:<local port> -e "STUNNEL_CONF=<configuration>" stunnel

New Versions (windows)

If a new version of Stunnel or new version of Windows is released, update .github/workflows/build_windows_images.yml to include the new versions in the build matrix.

Usage (Alpine Linux)

cd alpine
docker build -t stunnel .
docker run -p <container port>:<local port> -e "STUNNEL_CONF=<configuration>" stunnel

New Versions (Alpine Linux)

If a new version of Stunnel (Alpine package) or new version of Alpine Linux is released, update .github/workflows/build_alpine_images.yml to include the new versions in the build matrix.