From 4288fccbb89b4ff18c9bd7855b848d34a3abd32c Mon Sep 17 00:00:00 2001 From: nkozobrod Date: Tue, 14 Jul 2026 20:42:37 +0000 Subject: [PATCH] =?UTF-8?q?WEBUI=5FSECRET=5FKEY=20=D0=B7=D0=B0=D0=BA=D1=80?= =?UTF-8?q?=D0=B5=D0=BF=D0=BB=D1=91=D0=BD=20=D1=87=D0=B5=D1=80=D0=B5=D0=B7?= =?UTF-8?q?=20.env=20(=D1=81=D0=B5=D1=81=D1=81=D0=B8=D0=B8=20=D0=BF=D0=B5?= =?UTF-8?q?=D1=80=D0=B5=D0=B6=D0=B8=D0=B2=D0=B0=D1=8E=D1=82=20=D0=BE=D0=B1?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- docker-compose.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 181f61c..b6338f3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,6 +8,8 @@ services: - openwebui_data:/app/backend/data environment: - OLLAMA_BASE_URL=http://host.docker.internal:11434 + # закреплён, чтобы обновления контейнера не разлогинивали сессии + - WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY} - WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY} labels: - "traefik.enable=true" @@ -15,6 +17,13 @@ services: - "traefik.http.routers.openwebui.entrypoints=websecure" - "traefik.http.routers.openwebui.tls=true" - "traefik.http.routers.openwebui.tls.certresolver=myresolver" + networks: + - proxy volumes: openwebui_data: + +networks: + proxy: + external: true + name: traefik_proxy