From 28c535cadc58cca067b30d9c953c7c5a20443259 Mon Sep 17 00:00:00 2001 From: Domagoj Date: Fri, 15 Aug 2025 11:33:38 +0200 Subject: [PATCH] Update docs/podman.md with working podman run command --- docs/podman.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/podman.md b/docs/podman.md index 87c3d7d973c..4105c969be1 100644 --- a/docs/podman.md +++ b/docs/podman.md @@ -7,5 +7,7 @@ ## Steps 1. `podman build -t pokerogue -f Dockerfile .` -2. `podman run --rm -p 8000:8000 localhost/pokerogue` +2. `podman run --rm -p 8000:8000 -v $(pwd):/app:Z --userns=keep-id -u $(id -u):$(id -g) localhost/pokerogue` 3. Visit `http://localhost:8000/` + +Note: `podman run` may take a couple of minutes to mount the working directory \ No newline at end of file