Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mbta/stunnel-docker
- Owner: mbta
- License: mit
- Created: 2022-08-23T15:15:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-07T22:14:51.000Z (11 months ago)
- Last Synced: 2024-02-07T23:26:12.988Z (11 months ago)
- Language: PowerShell
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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.