/revealjs-docker

Reveal JS Presentation Software in a Docker Container

Primary LanguageCSS

RevealJS-Docker

NOTE This repo is no longer maintained and will be archived. Feel free to fork or play around, but there are presumably better solutions now.

A dockerized version of the Reveal JS presentation software. To try it out, just do:

  docker-compose up -d

And open a browser to http://localhost:8000. Alternatively, there is a run.sh script for use without Docker compose.

To use your own slides, replace /slides/slides.md with your own slides in Markdown format.

If you need to include other files e.g. images, keep them with the presentation file and add them in the slides directory. As the image runs as the "slides" user for security, you may need to run chmod go+r on files.

If you need to change some options or change the theme, update the files in the docker/revealjs-files directory and rebuild the image:

  docker-compose build

This project is heavily based on Peter Parente's revealjs. This differences are that this version has an updated Dockerfile which uses the NodeJS official image and removes a problematic VOLUME command.