Hello everyone,
I hope this message finds you well. I am reaching out to this wonderful community with a humble request. Recently, I came across FlowiseAI, an impressive no-code LLM (Language Learning Model) application that has the potential to revolutionize the way we interact with language models. However, setting it up via Docker can be a bit challenging, especially for users who are not very experienced with Docker configurations.
To make FlowiseAI more accessible to everyone, I am kindly requesting if someone could create a Docker template for this application. A well-crafted template would greatly benefit users with limited technical expertise, enabling them to effortlessly deploy and enjoy the capabilities of FlowiseAI.
Here is a brief overview of what the Docker Compose file for FlowiseAI looks like:
version: '3.1'
services:
flowise:
image: flowiseai/flowise
restart: always
environment:
- PORT=${PORT}
- CORS_ORIGINS=${CORS_ORIGINS}
- IFRAME_ORIGINS=${IFRAME_ORIGINS}
- FLOWISE_USERNAME=${FLOWISE_USERNAME}
- FLOWISE_PASSWORD=${FLOWISE_PASSWORD}
- FLOWISE_FILE_SIZE_LIMIT=${FLOWISE_FILE_SIZE_LIMIT}
- DEBUG=${DEBUG}
- DATABASE_PATH=${DATABASE_PATH}
- DATABASE_TYPE=${DATABASE_TYPE}
- DATABASE_PORT=${DATABASE_PORT}
- DATABASE_HOST=${DATABASE_HOST}
- DATABASE_NAME=${DATABASE_NAME}
- DATABASE_USER=${DATABASE_USER}
- DATABASE_PASSWORD=${DATABASE_PASSWORD}
- DATABASE_SSL=${DATABASE_SSL}
- DATABASE_SSL_KEY_BASE64=${DATABASE_SSL_KEY_BASE64}
- APIKEY_PATH=${APIKEY_PATH}
- SECRETKEY_PATH=${SECRETKEY_PATH}
- FLOWISE_SECRETKEY_OVERWRITE=${FLOWISE_SECRETKEY_OVERWRITE}
- LOG_LEVEL=${LOG_LEVEL}
- LOG_PATH=${LOG_PATH}
- BLOB_STORAGE_PATH=${BLOB_STORAGE_PATH}
- DISABLE_FLOWISE_TELEMETRY=${DISABLE_FLOWISE_TELEMETRY}
- MODEL_LIST_CONFIG_JSON=${MODEL_LIST_CONFIG_JSON}
ports:
- '${PORT}:${PORT}'
volumes:
- ~/.flowise:/root/.flowise
entrypoint: /bin/sh -c "sleep 3; flowise start"
As you can see, it has several environment variables and configurations that might be daunting for beginners. A simplified and user-friendly Docker template would be incredibly beneficial.
Thank you in advance for considering this request. Your effort in creating a Docker template for FlowiseAI will not only help me but also many others in the community who are eager to explore this no-code LLM app without the technical hurdles.
Looking forward to any assistance or guidance you can provide.
Best regards, Sn0w