9 lines
268 B
Makefile
9 lines
268 B
Makefile
![]() |
init:
|
||
|
podman run --rm -ti -v ${PWD}:/docs docker.io/squidfunk/mkdocs-material new .
|
||
|
|
||
|
preview:
|
||
|
podman run --rm -ti -v ${PWD}:/docs -p 8000:8000 docker.io/squidfunk/mkdocs-material
|
||
|
|
||
|
build:
|
||
|
podman run --rm -ti -v ${PWD}:/docs docker.io/squidfunk/mkdocs-material build
|