simple nginx docker container to easily serve static files.
# run from docker registry
docker run \
-p 8085:80 \
-v ./public:/var/www/files \
mutterio/mini-static-server# start with defaults from repo
docker-compose up
# this will create a 'public' folder in root of repo and
# serve files on port 8050