ser2net is a program for allowing connections between gensio accepters and gensio connectors. Generally, this would be a network connections to serial ports or IPMI Serial Over Lan (SOL) connections, but there are lots of gensios and lots of options. See gensio(5) for information on gensios.
All images are published to the following registries
- 🥇 GitHub as
ghcr.io/jippi/docker-ser2net⬅️ Recommended - 🥈 AWS as
public.ecr.aws/jippi/ser2net⬅️ Great alternative ⚠️ Docker Hub asjippi/docker-ser2net⬅️ Only use:latestas tags might disappear
Image tags with software specifications and version information can be found in the table below
| Tag | Version | OS (Debian) | Size |
|---|---|---|---|
latest |
latest † | bullseye (11.4) | ~60 MB |
$version |
$version (tag name minus the leading v) |
bullseye (11.4) | ~60 MB |
† Automation checks for new ser2net releases nightly (CEST, ~3am), so there might be a day or two latency for most recent release
touch $(pwd)/ser2net.yaml
docker run \
--name ser2net \
--network=host \
--restart=unless-stopped \
--detach \
--volume $(pwd)/ser2net.yaml:/etc/ser2net/ser2net.yaml \
--device /dev/ttyUSB0 \
ghcr.io/jippi/docker-ser2nettouch $(pwd)/ser2net.yamland add your ser2net configuration into the ser2net.yaml file.
version: '3.4'
services:
ser2net:
container_name: ser2net
image: ghcr.io/jippi/docker-ser2net
restart: unless-stopped
network_mode: host
volumes:
- ./ser2net.yaml:/etc/ser2net/ser2net.yaml
devices:
- /dev/ttyUSB0For any help specific to ser2net please head over to https://github.com/cminyard/ser2net