https://github.com/containersolutions/reveal-md
A CS themed version of Reveal-MD running on Alpine in a Docker Container
https://github.com/containersolutions/reveal-md
Last synced: 8 months ago
JSON representation
A CS themed version of Reveal-MD running on Alpine in a Docker Container
- Host: GitHub
- URL: https://github.com/containersolutions/reveal-md
- Owner: ContainerSolutions
- Created: 2016-09-20T05:05:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-28T09:02:13.000Z (about 8 years ago)
- Last Synced: 2025-04-05T13:39:25.044Z (about 1 year ago)
- Language: CSS
- Homepage:
- Size: 1.4 MB
- Stars: 5
- Watchers: 41
- Forks: 9
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Container Solutions reveal-md template
[](http://microbadger.com/images/containersol/reveal-md "Get your own image badge on microbadger.com")
Reveal-md theme for [Container Solutions](http://container-solutions.com)
# Running natively
```
npm install -g reveal-md
reveal-md --css resources/cs.css slides.md
```
# Running with Docker
- **Step 1** Build with docker:
```
docker build -t containersol/reveal-md .
```
- **Step 2** Run with docker:
```
docker run --rm -ti -p 8000:1948 -v `pwd`/resources:/usr/src/app/slides.md containersol/reveal-md
```
---
You can use the the test slides to get an idea for the formatting.
```
docker run -d -p 8000:1948 containersol/reveal-md demo
```
---
If you need to include other files e.g. images, keep them with the presentation file and just mount the directory e.g:
```
docker run -d -p 8000:1948 -v /my/slide/dir:/usr/src/app/ containersol/reveal-md:latest
```
---
To build your own version just clone https://github.com/webpro/reveal-md and modify the Dockerfile as you want
# Viewing the slides
Now go to http://localhost:8000 in your browser.