From ecf278d84b9c1b4fe1ac27c07379a591a5311678 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 13 Feb 2023 18:31:59 +0100 Subject: [PATCH] scripts/container.sh: support podman on macOS The default user and group IDs on macOS are different from those used on Linux, so add the expected ones explicitly. Signed-off-by: Stefan Weil --- scripts/container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/container.sh b/scripts/container.sh index 072d2ec1..607ff855 100755 --- a/scripts/container.sh +++ b/scripts/container.sh @@ -12,7 +12,7 @@ TAG="gluon:${BRANCH:-latest}" if [ "$(command -v podman)" ] then podman build -t "${TAG}" contrib/docker - podman run -it --rm --userns=keep-id --volume="$(pwd):/gluon" "${TAG}" + podman run -it --rm --userns=keep-id:uid=1000,gid=1000 --volume="$(pwd):/gluon" "${TAG}" elif [ "$(command -v docker)" ] then docker build -t "${TAG}" contrib/docker