jdkelley/busybox-echo-server
An echo server built off of busybox.
1.2K
This is my first docker container-a simple echo server built on busybox.
To run this as a container named echo
, run
$ docker run --rm --name echo -p 1234:1234 jdkelley/busybox-echo-server:latest
Use netcat to see if the echo server is up and running.
$ nc 0.0.0.0 1234
I got the idea for this basic image as a first repo from reading some of the docker documentation here.
You can find the source on GitHub and the container can be found on Docker Hub and GitHub Package Registry.
docker pull jdkelley/busybox-echo-server