Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mbta/stunnel-docker

Docker image to run Stunnel in a container
https://github.com/mbta/stunnel-docker

Last synced: about 1 month ago
JSON representation

Docker image to run Stunnel in a container

Awesome Lists containing this project

README

        

# Stunnel Docker images

[Stunnel](https://www.stunnel.org/) 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)

``` sh
cd windows
docker build -t stunnel .
docker run -p : -e "STUNNEL_CONF=" stunnel
```

## New Versions (windows)

If a [new version of Stunnel](https://www.stunnel.org/NEWS.html) or [new version of Windows](https://hub.docker.com/_/microsoft-windows) is released, update [.github/workflows/build_windows_images.yml](https://github.com/mbta/stunnel-docker/blob/main/.github/workflows/build_windows_images.yml) to include the new versions in the build matrix.

## Usage (Alpine Linux)

``` sh
cd alpine
docker build -t stunnel .
docker run -p : -e "STUNNEL_CONF=" stunnel
```

## New Versions (Alpine Linux)

If a [new version of Stunnel](https://www.stunnel.org/NEWS.html) ([Alpine package](https://pkgs.alpinelinux.org/package/edge/community/x86_64/stunnel)) or [new version of Alpine Linux](https://alpinelinux.org/releases/) is released, update [.github/workflows/build_alpine_images.yml](https://github.com/mbta/stunnel-docker/blob/main/.github/workflows/build_alpine_images.yml) to include the new versions in the build matrix.