-
|
Problem Using the following command, I'm passing the cat mkdocs.yml | docker run --rm -i \
-u $(id -u):$(id -g) \
-p 8002:8000 \
-v ${PWD}:/docs \
ghcr.io/squidfunk/mkdocs-material:9.6 \
serve -a 0.0.0.0:8000 -f -Output Starting up works. Page is accesible. Now after making changes, I get the error: |
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Oct 26, 2025
Replies: 1 comment 1 reply
-
|
Thanks for reporting. This is behavior of MkDocs. You're providing configuration to stdin (which MkDocs claims to support for Then make a single change to |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ToshY
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for reporting. This is behavior of MkDocs. You're providing configuration to stdin (which MkDocs claims to support for
serve), and MkDocs tries to reload the file. Here's a reproduction that does not use Docker or Material for MkDocs:Then make a single change to
docs/index.md, and you'll get: