jippi/ser2net

By jippi

Updated 25 days ago

Automatically updated nightly with new multi-arch releases.

Image
1

4.2K

ser2net as a Docker container

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.

Images

All images are published to the following registries

Image tags with software specifications and version information can be found in the table below

TagVersionOS (Debian)Size
latestlatest †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

docker run
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-ser2net
docker-compose
touch $(pwd)/ser2net.yaml

and 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/ttyUSB0

Further help and docs

For any help specific to ser2net please head over to https://github.com/cminyard/ser2net

Docker Pull Command

docker pull jippi/ser2net