Easy to use light docker image for those who want to create easy to distribute presentations.
983
=========
A command-line based markdown presentation tool.
Basic controls:
next slide Enter, Space, Right Arrow
previous slide Backspace, Left Arrow
quit q reload r slide N 1..9 first slide Home, g last slide End, G
=======
=======
It's simple.
Write your presentation in markdown. Remember if you don't want problems One slide can have maximum 24 lines
Put your presentations into docker container How? You have two options they're presentend on next slides
======
DockerfileFROM piotron/mdp:onbuild
LABEL author="<yourname>"
LABEL presentation_title="<your title>"
Build everything with
docker build -t <yourtag> .
======
This method is very helpful when you are preparing presentation and you want to check if everything is ok.
Run your container for first time. For example
docker run -ti piotron/mdp
Check name of your container(if you didn't set it)
docker ps -a
and look for the latest container from piotron/mdp
======
Use this method if you have directory of presentations.
docker run --rm -ti -v $(pwd)/presentations:/presentations piotron/mdp <file>
You can invert colors with -i presentation.mdp param
Content type
Image
Digest
Size
6.3 MB
Last updated
about 10 years ago
docker pull piotron/mdp