We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e3e4f0 commit 0cd352dCopy full SHA for 0cd352d
Dockerfile
@@ -233,6 +233,9 @@ COPY --from=shared-libs-builder /app/packages/shared ./packages/shared
233
# Configure dependencies
234
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
235
236
+# Fixes git "dubious ownership" issues when the volume is mounted with different permissions to the container.
237
+RUN git config --global safe.directory "*"
238
+
239
# Configure the database
240
RUN mkdir -p /run/postgresql && \
241
chown -R postgres:postgres /run/postgresql && \
0 commit comments