From 0cd352df72d128bc43110eca13d24e7bed7d5515 Mon Sep 17 00:00:00 2001 From: bkellam Date: Mon, 6 Oct 2025 19:43:12 -0700 Subject: [PATCH] add config setting --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 010f5940..95a8f825 100644 --- a/Dockerfile +++ b/Dockerfile @@ -233,6 +233,9 @@ COPY --from=shared-libs-builder /app/packages/shared ./packages/shared # Configure dependencies RUN apk add --no-cache git ca-certificates bind-tools tini jansson wget supervisor uuidgen curl perl jq redis postgresql postgresql-contrib openssl util-linux unzip +# Fixes git "dubious ownership" issues when the volume is mounted with different permissions to the container. +RUN git config --global safe.directory "*" + # Configure the database RUN mkdir -p /run/postgresql && \ chown -R postgres:postgres /run/postgresql && \