2024-10-10 11:48:32 +00:00
|
|
|
# documentation: https://docs.flowiseai.com/
|
|
|
|
|
# slogan: Flowise is an open source low-code tool for developers to build customized LLM orchestration flows & AI agents.
|
2025-08-17 16:23:57 +00:00
|
|
|
# category: ai
|
2024-10-10 11:48:32 +00:00
|
|
|
# tags: lowcode, nocode, ai, llm, openai, anthropic, machine-learning, rag, agents, chatbot, api, team, bot, flows
|
|
|
|
|
# logo: svgs/flowise.png
|
|
|
|
|
# port: 3001
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
flowise:
|
2024-10-10 12:37:29 +00:00
|
|
|
image: flowiseai/flowise:latest
|
2024-10-10 11:48:32 +00:00
|
|
|
environment:
|
2025-08-10 08:10:22 +00:00
|
|
|
- SERVICE_URL_FLOWISE_3001
|
2024-10-10 12:37:29 +00:00
|
|
|
- DEBUG=${DEBUG:-false}
|
|
|
|
|
- DISABLE_FLOWISE_TELEMETRY=${DISABLE_FLOWISE_TELEMETRY:-true}
|
|
|
|
|
- PORT=${PORT:-3001}
|
2024-10-10 11:48:32 +00:00
|
|
|
- DATABASE_PATH=/root/.flowise
|
|
|
|
|
- APIKEY_PATH=/root/.flowise
|
|
|
|
|
- SECRETKEY_PATH=/root/.flowise
|
|
|
|
|
- LOG_PATH=/root/.flowise/logs
|
|
|
|
|
- BLOB_STORAGE_PATH=/root/.flowise/storage
|
|
|
|
|
- FLOWISE_USERNAME=${SERVICE_USER_FLOWISE}
|
|
|
|
|
- FLOWISE_PASSWORD=${SERVICE_PASSWORD_FLOWISE}
|
|
|
|
|
volumes:
|
2024-10-10 12:37:29 +00:00
|
|
|
- flowise-data:/root/.flowise
|
2024-10-10 11:48:32 +00:00
|
|
|
healthcheck:
|
2024-10-10 12:37:29 +00:00
|
|
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:3001 || exit 1"]
|
2024-10-10 11:48:32 +00:00
|
|
|
interval: 5s
|
|
|
|
|
timeout: 5s
|
|
|
|
|
retries: 3
|