From 24ef6798ac0e009a145ddd02bbebb370399e6a72 Mon Sep 17 00:00:00 2001 From: Ian Nguyen Date: Sat, 20 Nov 2021 15:11:06 -0800 Subject: [PATCH] added a warning about docker build, and enabled admonitions in mkdocs config for adding warnings and notices in the doc --- docs/setup/server.md | 3 +++ mkdocs.yml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/docs/setup/server.md b/docs/setup/server.md index 75875e4..fe81506 100644 --- a/docs/setup/server.md +++ b/docs/setup/server.md @@ -43,6 +43,9 @@ npm run start:bundle ### With Docker +!!! failure "Not Supported Currently" + Avoid using Docker build until further notice. The current build is faulty and will not build correctly. Instead, install using the terminal in the section "With Terminal". + Optionally if you want to use Docker: ``` diff --git a/mkdocs.yml b/mkdocs.yml index f2b3667..8a5feb6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -28,5 +28,7 @@ theme: - navigation.indexes - navigation.top markdown_extensions: + - admonition + - pymdownx.details - pymdownx.highlight - pymdownx.superfences