https://github.com/b0ch3nski/revealjs-markdown-nginx
Reveal.js with Markdown support hosted by Nginx on Docker.
https://github.com/b0ch3nski/revealjs-markdown-nginx
alpine alpine-linux docker docker-image dockerfile markdown nginx reveal-js revealjs slides slideshow
Last synced: about 2 months ago
JSON representation
Reveal.js with Markdown support hosted by Nginx on Docker.
- Host: GitHub
- URL: https://github.com/b0ch3nski/revealjs-markdown-nginx
- Owner: b0ch3nski
- License: apache-2.0
- Created: 2018-11-28T14:37:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-28T17:30:36.000Z (over 7 years ago)
- Last Synced: 2025-04-09T22:43:12.366Z (about 1 year ago)
- Topics: alpine, alpine-linux, docker, docker-image, dockerfile, markdown, nginx, reveal-js, revealjs, slides, slideshow
- Language: HTML
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# revealjs-markdown-nginx
Reveal.js with Markdown support hosted by Nginx on Docker.
## Usage
Start website with example presentation:
```bash
docker run -d --name revealjs -p 8080:80 b0ch3nski/revealjs-markdown-nginx
```
You can examine the example by looking at [index.md](index.md) file.
For more detailed information, see [Markdown section](https://github.com/hakimel/reveal.js/#markdown) 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.