Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 541 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 541 Bytes

Markserv Dockerfile

Introduction

This is a Dockerfile that runs a Markdown HTTP server, it converts the MD files into HTML.

The original source of the MarkServ is hosted on:

https://github.com/markserv/markserv

Usage

docker run -d --rm \
  --name markserv \
  -v <your_markdown_directory_file>:/usr/src/app/md \
  -p8080:8080 \
  -p35729:35729 \
  jortok/markserv:latest

Then you can access to http://localhost:8080 to your markdown files in HTML.