|
|
||
|---|---|---|
| .. | ||
| .env.example | ||
| Dockerfile | ||
| README.md | ||
| docker-compose.yml | ||
README.md
Flowise Docker Hub Image
Starts Flowise from DockerHub Image
Usage
- Create
.envfile and specify thePORT(refer to.env.example) docker-compose up -d- Open http://localhost:3000
- You can bring the containers down by
docker-compose stop
🔒 Authrorization
- Create
.envfile and specify thePORT,FLOWISE_USERNAME, andFLOWISE_PASSWORD(refer to.env.example) - Pass
FLOWISE_USERNAMEandFLOWISE_PASSWORDto thedocker-compose.ymlfile:environment: - PORT=${PORT} - FLOWISE_USERNAME=${FLOWISE_USERNAME} - FLOWISE_PASSWORD=${FLOWISE_PASSWORD} docker-compose up -d- Open http://localhost:3000
- You can bring the containers down by
docker-compose stop
🌱 Env Variables
If you like to persist your data (flows, logs, apikeys), set these variables in the .env file inside docker folder:
- DATABASE_PATH=/root/.flowise
- APIKEY_PATH=/root/.flowise
- LOG_PATH=/root/.flowise/logs
Flowise also support different environment variables to configure your instance. Read more
| Variable | Description | Type | Default |
|---|---|---|---|
| PORT | The HTTP port Flowise runs on | Number | 3000 |
| FLOWISE_USERNAME | Username to login | String | |
| FLOWISE_PASSWORD | Password to login | String | |
| DEBUG | Print logs onto terminal/console | Boolean | |
| LOG_PATH | Location where log files are stored | String | your-path/Flowise/packages/server |
| LOG_LEVEL | Different log levels for loggers to be saved | Enum String: error, info, verbose, debug |
info |
| DATABASE_PATH | Location where database is saved | String | your-home-dir/.flowise |
| APIKEY_PATH | Location where api keys are saved | String | your-path/Flowise/packages/server |
| EXECUTION_MODE | Whether predictions run in their own process or the main process | Enum String: child, main |
main |