Skip to content

Reveal.js with Markdown support hosted by Nginx on Docker.

License

Notifications You must be signed in to change notification settings

b0ch3nski/revealjs-markdown-nginx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

revealjs-markdown-nginx

Reveal.js with Markdown support hosted by Nginx on Docker.

Usage

Start website with example presentation:

docker run -d --name revealjs -p 8080:80 b0ch3nski/revealjs-markdown-nginx

You can examine the example by looking at index.md file. For more detailed information, see Markdown section of reveal.js documentation.

To start container with your presentation, mount it using volume:

-v "${PWD}/slides.md:/usr/share/nginx/html/index.md":ro

Note: make sure that your presentation has 755 permissions - otherwise, nginx will fail with permission denied error.