Created
March 15, 2025 17:28
-
-
Save karthikeayan/2d74dc5bfcc841b768c65992ec657e77 to your computer and use it in GitHub Desktop.
flowise-openwebui-ollama-docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
flowise: | |
image: flowiseai/flowise | |
restart: always | |
environment: | |
- PORT=3001 | |
- FLOWISE_USERNAME=${FLOWISE_USERNAME} | |
- FLOWISE_PASSWORD=${FLOWISE_PASSWORD} | |
ports: | |
- "3001:3001" | |
volumes: | |
- ./.flowise:/root/.flowise | |
entrypoint: /bin/sh -c "sleep 3; flowise start" | |
openWebUI: | |
image: ghcr.io/open-webui/open-webui:main | |
restart: always | |
ports: | |
- "3000:8080" | |
environment: | |
- OLLAMA_API_BASE_URL=http://ollama:11434 | |
extra_hosts: | |
- "host.docker.internal:host-gateway" | |
volumes: | |
- ./open-webui-local:/app/backend/data | |
depends_on: | |
- ollama | |
ollama: | |
image: ollama/ollama | |
environment: | |
- 'OLLAMA_HOST=0.0.0.0' | |
- 'OLLAMA_PORT=11434' | |
ports: | |
- "11434:11434" | |
volumes: | |
- ./ollama-local:/root/.ollama |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment