Unverified Commit 82b5c8ab authored by Hadley Rich's avatar Hadley Rich Committed by GitHub

feat: add sh entrypoint to allow MEMOS_DSN_FILE to load variable from secret (#4236)

Add sh entrypoint to allow MEMOS_DSN_FILE to load variable from secret
parent 7817ad07
...@@ -27,6 +27,7 @@ RUN apk add --no-cache tzdata ...@@ -27,6 +27,7 @@ RUN apk add --no-cache tzdata
ENV TZ="UTC" ENV TZ="UTC"
COPY --from=backend /backend-build/memos /usr/local/memos/ COPY --from=backend /backend-build/memos /usr/local/memos/
COPY entrypoint.sh /usr/local/memos/
EXPOSE 5230 EXPOSE 5230
...@@ -37,4 +38,4 @@ VOLUME /var/opt/memos ...@@ -37,4 +38,4 @@ VOLUME /var/opt/memos
ENV MEMOS_MODE="prod" ENV MEMOS_MODE="prod"
ENV MEMOS_PORT="5230" ENV MEMOS_PORT="5230"
ENTRYPOINT ["./memos"] ENTRYPOINT ["./entrypoint.sh", "./memos"]
#!/usr/bin/env sh
file_env() {
var="$1"
fileVar="${var}_FILE"
val_var="$(printenv "$var")"
val_fileVar="$(printenv "$fileVar")"
if [ -n "$val_var" ] && [ -n "$val_fileVar" ]; then
echo "error: both $var and $fileVar are set (but are exclusive)" >&2
exit 1
fi
if [ -n "$val_var" ]; then
val="$val_var"
elif [ -n "$val_fileVar" ]; then
val="$(cat "$val_fileVar")"
fi
export "$var"="$val"
unset "$fileVar"
}
file_env "MEMOS_DSN"
exec "$@"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment