From a1dd1ea8764b50085249659798704eaa92eda276 Mon Sep 17 00:00:00 2001 From: Gitouche <26656-gitouche@users.noreply.framagit.org> Date: Fri, 22 Nov 2024 18:44:00 +0100 Subject: [PATCH] PrivateBin : grande simplification - fix 1/x --- podman-privatebin/10_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podman-privatebin/10_install.sh b/podman-privatebin/10_install.sh index 49643ec..a3a79e0 100755 --- a/podman-privatebin/10_install.sh +++ b/podman-privatebin/10_install.sh @@ -20,7 +20,7 @@ podman container run -d --read-only --name ${container_name} \ --mount=type=tmpfs,destination=/run,U=true \ --mount=type=tmpfs,destination=/tmp \ --mount=type=tmpfs,destination=/var/lib/nginx/tmp,U=true \ - -v ${srvdata_volume}:/srv/data:UZ \ + -v ${srvdata_volume}:/srv/data:U,Z \ "${privatebin_image}":"${privatebin_version}" && ( podman container logs -f ${container_name} 2>&1 & ) | grep -q 'NOTICE: ready to handle connections' && podman container stop ${container_name} &&