diff --git a/Containers/Docker/Docker Compose/Material MkDocs.md b/Containers/Docker/Docker Compose/Material MkDocs.md index 623f8e4..2094202 100644 --- a/Containers/Docker/Docker Compose/Material MkDocs.md +++ b/Containers/Docker/Docker Compose/Material MkDocs.md @@ -6,15 +6,21 @@ ## Documentation Sequence ``` mermaid sequenceDiagram - autonumber - Alice->>John: Hello John, how are you? - loop Healthcheck - John->>John: Fight against hypochondria - end - Note right of John: Rational thoughts! - John-->>Alice: Great! - John->>Bob: How about you? - Bob-->>John: Jolly good! + participant Gitea + participant Git_Repo_Updater as Git-Repo-Updater + participant MkDocs + participant NTFY + + loop Every 5 seconds + Git_Repo_Updater->>Gitea: Check for changes in repository + alt Changes Detected + Gitea->>Git_Repo_Updater: Notify change + Git_Repo_Updater->>NTFY: Send change notification + Git_Repo_Updater->>Gitea: Download data from repository + Git_Repo_Updater->>MkDocs: Copy data to MkDocs + MkDocs->>MkDocs: Reload and render webpages + end + end ``` ## Deploy Material MKDocs