From 3335f4ad0e12e78c8d691cd5b0cac107b8ac1911 Mon Sep 17 00:00:00 2001 From: Lukas Date: Sun, 22 Dec 2024 12:18:22 +0100 Subject: [PATCH] Added volumes for outputs, extensions, embeddings and configs so that they are persisted across restarts --- compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/compose.yml b/compose.yml index 2088e357cd7..0d713f4bfd4 100644 --- a/compose.yml +++ b/compose.yml @@ -5,6 +5,18 @@ services: - type: bind source: ./models target: /webui/models + - type: bind + source: ./outputs + target: /webui/outputs + - type: bind + source: ./extensions + target: /webui/extensions + - type: bind + source: ./embeddings + target: /webui/embeddings + - type: bind + source: ./configs + target: /webui/configs ports: - 7860:7860 deploy: