diff --git a/ai/compose.yml b/ai/compose.yml index 3c7bc2c..eb503aa 100755 --- a/ai/compose.yml +++ b/ai/compose.yml @@ -163,7 +163,10 @@ services: # --- Honcho + OpenConcho combiné: API + Web UI nginx/FastAPI --- honcho-ui: - build: ./honcho + build: + context: ./honcho + ssh: + - default container_name: honcho restart: unless-stopped environment: diff --git a/ai/honcho/Dockerfile b/ai/honcho/Dockerfile index 98f4794..20b722c 100644 --- a/ai/honcho/Dockerfile +++ b/ai/honcho/Dockerfile @@ -7,9 +7,9 @@ RUN apt-get update && \ COPY --from=ghcr.io/astral-sh/uv:0.9.24 /uv /bin/uv -ARG HONCHO_REPO=https://code.lazyworkhorse.net/Hermes/honcho.git +ARG HONCHO_REPO=ssh://git@code.lazyworkhorse.net:2222/Hermes/honcho.git ARG HONCHO_REF=main -RUN git clone --depth 1 --branch ${HONCHO_REF} ${HONCHO_REPO} /app +RUN --mount=type=ssh git clone --depth 1 --branch ${HONCHO_REF} ${HONCHO_REPO} /app WORKDIR /app