From fb24ee22297abe9d95abcf1b40231ee53e1d032e Mon Sep 17 00:00:00 2001 From: thomas Date: Sun, 11 May 2025 20:12:36 +0000 Subject: [PATCH] =?UTF-8?q?webui/docker-compose.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- webui/docker-compose.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 webui/docker-compose.yml diff --git a/webui/docker-compose.yml b/webui/docker-compose.yml new file mode 100644 index 0000000..d61f392 --- /dev/null +++ b/webui/docker-compose.yml @@ -0,0 +1,11 @@ +services: + open-webui: + image: ${WEBUI_IMAGE:-ghcr.io/open-webui/open-webui:main} + container_name: ${WEBUI_NAME:-open-webui} + ports: + - "${WEBUI_PORT:-3000}:8080" + volumes: + - ${WEBUI_VOLUME:-open-webui_data}:/app/backend/data + restart: always + extra_hosts: + - "host.docker.internal:host-gateway" \ No newline at end of file