From ec6f0d697012dc80c4bba66a35b5bc64eca0bc97 Mon Sep 17 00:00:00 2001 From: jay Date: Thu, 21 Aug 2025 06:57:44 +0900 Subject: [PATCH] Update docker-compose.yml-final --- docker-compose.yml-final | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/docker-compose.yml-final b/docker-compose.yml-final index 88f1884..1482b94 100644 --- a/docker-compose.yml-final +++ b/docker-compose.yml-final @@ -1,16 +1,21 @@ -name: BSEJ-AI services: - open-webui: - ports: - - 3000:8080 - extra_hosts: + open-webui: + image: ghcr.io/open-webui/open-webui:main + ports: + - "3000:8080" + extra_hosts: - host.docker.internal:host-gateway - volumes: - - open-webui:/app/backend/data - container_name: open-webui - restart: always - image: ghcr.io/open-webui/open-webui:main + volumes: + - open-webui:/app/backend/data + restart: always + + watchtower: + image: containrrr/watchtower + volumes: + - /var/run/docker.sock:/var/run/docker.sock + command: --interval 30 open-webui + depends_on: + - open-webui + volumes: - open-webui: - external: false - name: open-webui \ No newline at end of file + open-webui: \ No newline at end of file