git clone https://github.com/NicodemeB/node-reveal.js.git
cd node-reveal.js.git
docker build -t node-reveal.js:latest .In folder containing the html slideshow, run :
docker run --name <YOUR_DOCKER_NAME> --rm -d \
-v "$(pwd)/index.html:/reveal.js/index.html" \
-v "$(pwd)/slides/:/reveal.js/slides/" \
-v "$(pwd)/bookmarks/:/reveal.js/bookmarks/" \
-p "127.0.0.1:1234:80" "node-reveal.js:latest"docker stop <YOUR_DOCKER_NAME>