From 4793efea628b0457ea60acd29735a6c62d744183 Mon Sep 17 00:00:00 2001 From: Eric Fahlgren Date: Thu, 19 Sep 2024 14:33:39 -0700 Subject: [PATCH] readme: fix bug in roll-your-own setup instructions My VM gave me user id 1000, which caused some confusion when I first tried to get the server up. Fix the instructions to use 'id -u', so users don't have to figure it out. Signed-off-by: Eric Fahlgren --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 01c68088..563d5b1f 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ Now it's possible to run all services via `podman-compose`: # where to store images and json files echo "PUBLIC_PATH=$(pwd)/public" > .env # absolute path to podman socket mounted into worker containers - echo "CONTAINER_SOCK=/run/user/1001/podman/podman.sock" >> .env + echo "CONTAINER_SOCK=/run/user/$(id -u)/podman/podman.sock" >> .env podman-compose up -d This will start the server, the Podman API container and two workers. The first