Busybox, The Swiss Army Knife
Create the small Docker image to serve http request. You can implement mockups with this.
docker pull busybox
# -f Do not daemonize
docker run -d -it --name my-http-server -p 8080:80 -v /var:/var/www/ -w /var/www/ busybox /bin/httpd -f -h /var/www/
echo "<h1>hello world</h1>" > index.html
curl localhost:8080/index.html
References
- BusyBox - The Swiss Army Knife of Embedded Linux
Feedback
For any feedback or request, don't hesitate, open an `issue` and let me know. Don't be shy.
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.