25 lines
682 B
YAML
25 lines
682 B
YAML
services:
|
|
# A Docker web service
|
|
- type: web
|
|
name: langflow
|
|
runtime: docker
|
|
dockerfilePath: ./docker/render.Dockerfile
|
|
repo: https://github.com/langflow-ai/langflow
|
|
branch: main
|
|
plan: standard
|
|
healthCheckPath: /health_check
|
|
autoDeploy: false
|
|
envVars:
|
|
- key: LANGFLOW_DATABASE_URL
|
|
value: sqlite:////app/data/.cache/langflow/langflow.db
|
|
- key: LANGFLOW_HOST
|
|
value: 0.0.0.0
|
|
- key: LANGFLOW_PORT
|
|
# default render port https://docs.render.com/web-services#port-binding
|
|
value: 10000
|
|
- key: LANGFLOW_LOG_LEVEL
|
|
value: INFO
|
|
disk:
|
|
name: langflow-data
|
|
mountPath: /app/data
|