From 9635ed8e7e886a4bedb444fa47971be17c3fffce Mon Sep 17 00:00:00 2001 From: Hermes Date: Mon, 25 May 2026 16:03:12 -0400 Subject: [PATCH] fix_honcho_build_ssh --- ai/compose.yml | 5 ++++- ai/honcho/Dockerfile | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) 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