services: open-webui: image: openwebui/open-webui:latest container_name: open-webui restart: unless-stopped ports: - "3000:8080" volumes: - open-webui-data:/app/backend/data environment: - DMR_BASE_URL=http://172.17.0.1:12434 - OLLAMA_BASE_URL=http://172.17.0.1:12434 - HF_HUB_OFFLINE=1 # ← Impide descargas externas - HF_TOKEN= # ← Vacío para no autenticar extra_hosts: - "host.docker.internal:host-gateway" networks: - dmr-network networks: dmr-network: driver: bridge volumes: open-webui-data: