20 lines
448 B
YAML
20 lines
448 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
flowise:
|
|
image: flowiseai/flowise:latest
|
|
container_name: flowise
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${FLOWISE_PORT:-3000}:3000"
|
|
volumes:
|
|
- flowise_data:/root/.flowise
|
|
environment:
|
|
- FLOWISE_USERNAME=${FLOWISE_USERNAME:-admin}
|
|
- FLOWISE_PASSWORD=${FLOWISE_PASSWORD:-changeme}
|
|
- APIKEY_PATH=/root/.flowise
|
|
- LOG_PATH=/root/.flowise/logs
|
|
|
|
volumes:
|
|
flowise_data:
|