examples.openshift.pub
Content ofBuild
via Containerfile
podman build \
-t mkdocs:local \
--no-cache \
-f Containerfile .
Local development
Build local runtime.
podman build \
-t mkdocs:local \
--no-cache \
-f Containerfile.local-run .
Run it
podman run -ti --rm \
-v $(pwd):/opt/app-root/src:z \
-p 8080:8080 mkdocs:local