Files
backstage/packages/techdocs-container
Emma Indal 5212dac0c1 Merge pull request #1694 from spotify/mob/techdocs-use-techdocs-pip-in-dockerfile
Update dockerfile to use published package of techdocs-core
2020-07-21 10:17:47 +02:00
..
2020-07-13 14:40:31 +02:00

techdocs-container

This is the Docker container that powers the creation of static documentation sites that are supported by TechDocs.

WIP: This is a work in progress. It is not ready for use yet. Follow our progress on the Backstage Discord under #docs-like-code or on our GitHub Milestone.

Getting Started

Using the TechDocs CLI, we can invoke the latest version of techdocs-container via Docker Hub:

npx @techdocs/cli serve

Local Development

docker build . -t mkdocs:local-dev

docker run -w /content -v $(pwd)/mock-docs:/content -p 8000:8000 -it mkdocs:local-dev serve -a 0.0.0.0:8000

Then open up http://localhost:8000 on your local machine.