This is a simple web server that states its hostname and any custom message
provided in the MESSAGE environment variable.
It is intended as a debugging tool for building docker stacks.
$ docker run --rm -it \
--publish 3000:3000 \
--env "MESSAGE=webserver here" \
dannyben/whoami
services:
web:
image: dannyben/whoami
ports: ["3000:3000"]
environment:
MESSAGE: "web server"
Content type
Image
Digest
Size
8.3 MB
Last updated
over 4 years ago
docker pull dannyben/whoami