Static documentation site in Mkdocs https://doc.gregandev.fr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
documentation/docker-compose.yml

13 lines
266 B

version: "3"
services:
webdoc:
build: .
container_name: mkdocs
volumes:
- ${PWD}/doc:/docs
entrypoint: ""
command: ["sh", "-c", "pip install -r ./requirements.txt && mkdocs serve --dev-addr=0.0.0.0:8000"]
ports:
- "8000:8000"