feat: add basic mkdocs site

This commit is contained in:
2024-09-25 21:11:19 +02:00
parent a0009e270a
commit ed882463f4
14 changed files with 103 additions and 1 deletions

3
templates/Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM squidfunk/mkdocs-material:9.5
#RUN pip install

View File

@@ -0,0 +1,10 @@
services:
mkdocs:
build:
context: ../
dockerfile: ./templates/Dockerfile
ports:
- "8000:8000"
volumes:
- ${PWD}:/docs
command: serve -a 0.0.0.0:8000