diff --git a/README.md b/README.md index b2b769a..1bec01b 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ podman pull docker.io/squidfunk/mkdocs-material:latest You can then enter the directory where you have cloned this repository (where mkdocs.yml is) and then you can run the following development site (that will automatically refresh on each new file/change) : ``` -podman run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material +podman run --rm -it -p 8000:8000 -v ${PWD}:/docs:z squidfunk/mkdocs-material ``` You can now open your browser to http://localhost:8000 and you'll be able to see `live` your edit/changes @@ -24,7 +24,7 @@ You can now open your browser to http://localhost:8000 and you'll be able to see Still using same podman container, but instead call it like this : ``` -podman run --rm -it -v ${PWD}:/docs squidfunk/mkdocs-material build +podman run --rm -it -v ${PWD}:/docs:z squidfunk/mkdocs-material build ```