19 lines
431 B
YAML
19 lines
431 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
langflow:
|
|
image: langflowai/langflow:latest
|
|
container_name: langflow
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${LANGFLOW_PORT:-7860}:7860"
|
|
volumes:
|
|
- langflow_data:/app/langflow
|
|
environment:
|
|
- LANGFLOW_DATABASE_URL=sqlite:////app/langflow/langflow.db
|
|
- LANGFLOW_CONFIG_DIR=/app/langflow
|
|
- LANGFLOW_AUTO_LOGIN=${AUTO_LOGIN:-true}
|
|
|
|
volumes:
|
|
langflow_data:
|