- Use docker to serve the content.
docker run --name codemash --rm -v $PWD/:/usr/share/nginx/html:ro -d -p 8088:80 nginx-
Open browser to http://localhost:8088
-
When you are done, stop the docker container.
docker stop codemashdocker run --name codemash --rm -v $PWD/:/usr/share/nginx/html:ro -d -p 8088:80 nginxOpen browser to http://localhost:8088
When you are done, stop the docker container.
docker stop codemash