add support for openwebui

This commit is contained in:
Adil Hafeez 2025-05-27 11:03:30 -07:00
parent 79cbcb5fe1
commit 2ccbcb3ff5
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
6 changed files with 100 additions and 19 deletions

View file

@ -728,7 +728,7 @@ static_resources:
- endpoint:
address:
socket_address:
address: 0.0.0.0
address: host.docker.internal
port_value: 9091
hostname: localhost

View file

@ -52,6 +52,7 @@ def docker_start_archgw_detached(
port_mappings = [
f"{prompt_gateway_port}:{prompt_gateway_port}",
f"{llm_gateway_port}:{llm_gateway_port}",
f"{llm_gateway_port+1}:{llm_gateway_port+1}",
"19901:9901",
]
port_mappings_args = [item for port in port_mappings for item in ("-p", port)]