[add] comfy to ollama
This commit is contained in:
parent
83ac548ee3
commit
5084899dbd
3 changed files with 5 additions and 33 deletions
|
|
@ -16,6 +16,8 @@ services:
|
|||
- ollama
|
||||
ports:
|
||||
- ${OPEN_WEBUI_PORT-3001}:8080
|
||||
extra_hosts:
|
||||
- host.docker.internal:host-gateway
|
||||
volumes:
|
||||
- open-webui:/app/backend/data
|
||||
container_name: open-webui
|
||||
|
|
@ -27,6 +29,9 @@ services:
|
|||
- 'WEBUI_SECRET_KEY='
|
||||
- 'RAG_EMBEDDING_ENGINE=ollama'
|
||||
- 'AUDIO_STT_ENGINE=openai'
|
||||
# comfy
|
||||
- COMFYUI_BASE_URL=http://host.docker.internal:8188/
|
||||
- ENABLE_IMAGE_GENERATION=True
|
||||
volumes:
|
||||
open-webui:
|
||||
external: true
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
https://docs.tzylo.com/auth/ce/docs/deploy/docker
|
||||
https://github.com/tzylo/tzylo-auth-ce
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
services:
|
||||
auth:
|
||||
image: tzylo/auth-ce:latest
|
||||
ports:
|
||||
- "7200:7200"
|
||||
environment:
|
||||
JWT_SECRET: supersecret
|
||||
DATABASE_URL: postgresql://auth:auth@db:5432/authdb
|
||||
REDIS_URL: redis://redis:6379
|
||||
NODE_ENV: production
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
|
||||
db:
|
||||
image: postgres:15
|
||||
environment:
|
||||
POSTGRES_DB: authdb
|
||||
POSTGRES_USER: auth
|
||||
POSTGRES_PASSWORD: auth
|
||||
volumes:
|
||||
- auth-db:/var/lib/postgresql/data
|
||||
|
||||
redis:
|
||||
image: redis:7
|
||||
volumes:
|
||||
- auth-redis:/data
|
||||
|
||||
volumes:
|
||||
auth-db:
|
||||
auth-redis:
|
||||
Loading…
Add table
Reference in a new issue