Files
docs/Makefile

20 lines
385 B
Makefile
Raw Normal View History

2025-06-02 00:13:27 +08:00
live:
2025-10-07 15:06:54 +08:00
@echo "Wait until container starts and open http://localhost:3000 to see live preview"
@docker run \
--pull always \
--rm \
--interactive \
--tty \
-p 3000:8000 \
-v ${PWD}:/docs \
squidfunk/mkdocs-material:9.6.20
2025-06-02 00:13:27 +08:00
build:
@docker run \
--pull always \
--rm \
--interactive \
--tty \
-v ${PWD}:/docs \
squidfunk/mkdocs-material:9.6.20 build --verbose