Compare commits

..

2 Commits

Author SHA1 Message Date
Domagoj
833b538c73
Merge 28c535cadc into b2990aaa15 2025-08-15 09:34:38 +00:00
Domagoj
28c535cadc Update docs/podman.md with working podman run command 2025-08-15 11:33:38 +02:00

View File

@ -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