based on:
- nemasu/asmttpd - the server
- library/alpine - for building
docker run -p 8080:80 --name asmttpd -d 0xff/asmttpd
curl http://localhost:8080/ # --> it works!
# go somwhere we can play...
cd `mktemp -d`
# download some random template (thanks bootstrapzero.com!)
curl -o template.zip http://www.codeply.com/download/DRBmOoChfM
unzip template.zip && rm template.zip
# start it
docker run -p 8888:80 --name asmttpd-site -d -v `pwd`:/var/www 0xff/asmttpd
# point your browser to http://localhost:8888/
Optional, image available on Docker Hub.
# build filesystem
./build/build.sh
# build image
docker build -t 0xff/asmttpd tiny