1
0
Fork 0
local-llm/docker-compose.base.yml

18 lines
468 B
YAML
Raw Normal View History

2024-02-03 03:27:22 +00:00
services:
2024-03-28 18:00:29 +00:00
# Begin open-webui
open-webui:
image: ghcr.io/open-webui/open-webui:main
2024-02-03 03:27:22 +00:00
ports:
2024-03-28 18:00:29 +00:00
- 8080:8080
2024-02-03 03:27:22 +00:00
environment:
2024-11-14 00:38:42 +00:00
OLLAMA_BASE_URL: http://host.docker.internal:11434
2024-11-13 04:27:20 +00:00
WEBUI_AUTH: "False"
2024-11-15 01:48:32 +00:00
no_proxy: localhost,127.0.0.1,.docker.internal
NO_PROXY: localhost,127.0.0.1,.docker.internal
extra_hosts:
- host.docker.internal:host-gateway
2024-02-03 03:27:22 +00:00
volumes:
2024-03-28 18:00:29 +00:00
- open-webui_data:/app/backend/data
2024-02-03 03:27:22 +00:00
volumes:
2024-03-28 18:00:29 +00:00
open-webui_data: