this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(homelab-docs): switch to mkdocs

https://github.com/khuedoan/homelab/pull/68

+6 -7
+6 -7
apps/homelab-docs/deployment.yaml
··· 21 21 - name: static 22 22 mountPath: /usr/share/nginx/html 23 23 - name: build 24 - image: alpine:latest 24 + image: alpine:latest # TODO https://github.com/squidfunk/mkdocs-material/issues/2945 25 25 workingDir: /usr/local/src 26 26 command: 27 27 - /bin/sh 28 28 - -c 29 29 args: 30 30 - | 31 - apk add git make cargo 32 - apk add --repository "http://dl-cdn.alpinelinux.org/alpine/edge/testing" mdbook 33 - cargo install --root /usr/local mdbook-mermaid 31 + apk add git python3 py3-pip 32 + pip install mkdocs-material 33 + 34 34 git clone https://github.com/khuedoan/homelab . 35 - cd docs 35 + 36 36 while true; do 37 - mdbook-mermaid install . 38 - mdbook build . --dest-dir /usr/share/nginx/html 37 + mkdocs build --site-dir /usr/share/nginx/html 39 38 sleep 120 40 39 git fetch origin 41 40 git reset --hard origin/master