Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/teamdeeson/mkdocs

Docker configuration for building and serving mkdocs static sites.
https://github.com/teamdeeson/mkdocs

Last synced: 18 days ago
JSON representation

Docker configuration for building and serving mkdocs static sites.

Awesome Lists containing this project

README

        

# mkdocs Docker container

Docker configuration for building and serving mkdocs static sites using mkdocs - http://www.mkdocs.org/

# Serve

To start a development server on http://localhost use:

`docker run -it --rm -p 80:8000 -v ${PWD}:/docs --name mkdocs-serve teamdeeson/mkdocs:latest`

# Build

To generate the static site assets into the site directory use:

`docker run -it --rm -v ${PWD}:/docs --name mkdocs-build teamdeeson/mkdocs:latest build --clean`

# Versions

For the latest version use the image `teamdeeson/mkdocs:latest` - otherwise the following are available

* `teamdeeson/mkdocs:0.17.1`
* `teamdeeson/mkdocs:0.15.3`