19 lines
571 B
YAML
19 lines
571 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: open-webui_web_1
|
|
APP_PORT: 8080
|
|
PROXY_AUTH_ADD: "false"
|
|
|
|
web:
|
|
image: ghcr.io/open-webui/open-webui:v0.8.12@sha256:8113fa5510020ef05a44afc0c42d33eabeeb2524a996e3e3fb8c437c00f0d792
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/open-webui:/app/backend/data
|
|
environment:
|
|
# Exported from ollama app, which is currently a required dependency.
|
|
# This will need to change once optional dependencies are supported.
|
|
OLLAMA_BASE_URL: $APP_OLLAMA_URL
|
|
restart: on-failure
|