From 0e14994532c558f002afc0d0287db807d789349c Mon Sep 17 00:00:00 2001 From: Thomas <27960254+thomiceli@users.noreply.github.com> Date: Thu, 30 Jul 2026 03:27:33 +0200 Subject: [PATCH] Add OG home env var in Dockerfile (#779) --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index efa98ec..013d48a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,6 +63,8 @@ COPY --from=build --chown=opengist:opengist /opengist/config.yml /config.yml COPY --from=build --chown=opengist:opengist /opengist/opengist . COPY --from=build --chown=opengist:opengist /opengist/docker ./docker +ENV OG_OPENGIST_HOME=/opengist + EXPOSE 6157 6158 2222 VOLUME /opengist HEALTHCHECK --interval=60s --timeout=30s --start-period=15s --retries=3 CMD curl -f http://localhost:6157/healthcheck || exit 1