Spaces:
Running
Running
File size: 682 Bytes
d202ada |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
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
|