[READ-ONLY] Mirror of https://github.com/FoxxMD/komodo-import. Import existing compose stacks into Komodo foxxmd.github.io/komodo-import
compose docker import komodo toml
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: Set mount dir and all subdirectories as trusted git directories (#6)

* fix: Set mount dir and all subdirectories as trusted git directories #5

authored by

Matt Foxx and committed by
GitHub
(Sep 4, 2025, 3:55 PM EDT) 062f0fef 69e50fca

+3 -2
+3 -2
Dockerfile
··· 23 23 24 24 FROM base as app 25 25 26 - RUN git config --global --add safe.directory /filesOnServer 27 - 28 26 ARG APP_BUILD_VERSION 29 27 ENV APP_VERSION=$APP_BUILD_VERSION 30 28 31 29 USER 1000 30 + 31 + # https://stackoverflow.com/a/78818156/1469797 32 + RUN git config --global --add safe.directory "/filesOnServer" && git config --global --add safe.directory "/filesOnServer/*" 32 33 33 34 WORKDIR /usr/src/app 34 35