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} &&