DockerfileDocker creates an image to change the background-color of your application in the browser
ECHO_BG_COLOR- This variables passes the names of the color to change background colorECHO_PORT- This variables passes the names of the porttcp/8080 - http-echo listening endpointdocker build \
--tag echo \
--file docker/Dockerfile \
.
docker run --rm --interactive --tty \
--env "ECHO_PORT=8080" \
--env "ECHO_BG_COLOR=#ff0000" \
--publish 8080:8080 \
echo
Content type
Image
Digest
sha256:bc2866707…
Size
34.5 MB
Last updated
over 2 years ago
docker pull theanurin/http-echo