Compare commits
27 Commits
main
...
0862f68103
| Author | SHA1 | Date | |
|---|---|---|---|
| 0862f68103 | |||
| 0eee724f6a | |||
| 2298fb53b8 | |||
| e5c29e5b46 | |||
| 5e2ace4829 | |||
| 968e4520bc | |||
| 74db170b38 | |||
| 904aa51bc4 | |||
| 14853463de | |||
| e80b0af5ab | |||
| 2c28364bf8 | |||
| 45f09ae7ff | |||
| c710a007f8 | |||
| 06973e6d94 | |||
| 4845a6ec4a | |||
| fdc0babb7e | |||
| 5d064b9192 | |||
| dd0481d0a8 | |||
| 2a36213b25 | |||
| 71304cbc1e | |||
| 9fa2420691 | |||
| f33db26118 | |||
| 7ab5e36805 | |||
| 6dac601784 | |||
| fe25137539 | |||
| 7a879c81ed | |||
| 043e491a77 |
@ -1,8 +0,0 @@
|
|||||||
# Clé secrète Open WebUI (générer avec: openssl rand -hex 32)
|
|
||||||
WEBUI_SECRET_KEY=your_secret_key_here
|
|
||||||
|
|
||||||
# IP publique de ta VM Vast.ai (change à chaque nouvelle instance)
|
|
||||||
WEBUI_URL=http://YOUR_VAST_AI_IP
|
|
||||||
|
|
||||||
# Token du tunnel Cloudflare
|
|
||||||
CF_TUNNEL_TOKEN=your_cloudflare_tunnel_token
|
|
||||||
@ -16,27 +16,14 @@ services:
|
|||||||
condition: service_started
|
condition: service_started
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
# --- LE TUNNEL HTTPS ---
|
|
||||||
cloudflared:
|
|
||||||
image: cloudflare/cloudflared:latest
|
|
||||||
container_name: studio-cloudflared
|
|
||||||
command: tunnel --no-autoupdate run --token ${CF_TUNNEL_TOKEN}
|
|
||||||
environment:
|
|
||||||
- CF_TUNNEL_TOKEN=${CF_TUNNEL_TOKEN}
|
|
||||||
networks:
|
|
||||||
- studio-net
|
|
||||||
depends_on:
|
|
||||||
- gateway
|
|
||||||
restart: always
|
|
||||||
|
|
||||||
# --- L'INTERFACE (Open WebUI) ---
|
# --- L'INTERFACE (Open WebUI) ---
|
||||||
open-webui:
|
open-webui:
|
||||||
image: ghcr.io/open-webui/open-webui:main
|
image: ghcr.io/open-webui/open-webui:main
|
||||||
container_name: open-webui
|
container_name: open-webui
|
||||||
environment:
|
environment:
|
||||||
- OLLAMA_BASE_URL=http://ollama:11434
|
- OLLAMA_BASE_URL=http://ollama:11434
|
||||||
- WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY}
|
- WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY:-supersecretkey}
|
||||||
- WEBUI_URL=${WEBUI_URL}
|
- WEBUI_URL=http://93.108.34.236
|
||||||
- ENABLE_WEBSOCKETS=True
|
- ENABLE_WEBSOCKETS=True
|
||||||
volumes:
|
volumes:
|
||||||
- webui_data:/app/backend/data
|
- webui_data:/app/backend/data
|
||||||
|
|||||||
Reference in New Issue
Block a user