Files
docs/Makefile

20 lines
385 B
Makefile

live:
@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
build:
@docker run \
--pull always \
--rm \
--interactive \
--tty \
-v ${PWD}:/docs \
squidfunk/mkdocs-material:9.6.20 build --verbose