From a06a9c0db9fbb7c88e8ee0499fca7d2fe2bb0dd1 Mon Sep 17 00:00:00 2001 From: Fabian Arrotin Date: Jun 21 2021 18:12:23 +0000 Subject: Simple selinux fix for correct context to build ./site Signed-off-by: Fabian Arrotin --- 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 ```