anything-llm/render.yaml

27 lines
884 B
YAML
Raw Normal View History

2023-12-19 21:04:32 +01:00
# Will create a Standard AnythingLLM docker container
# with a 10GB storage disk mounted to /storage
# See Standard compute tier pricing costs: https://render.com/pricing
# Standard tier will give the best performance, anything lower do not
# expect fast chats, embeddings, or other functionality.
services:
- type: web
name: anythingllm
runtime: image
image:
url: docker.io/mintplexlabs/anythingllm:render
2023-12-19 21:04:32 +01:00
region: oregon # optional (defaults to oregon)
plan: standard # optional (defaults to starter instance type)
branch: render # optional (defaults to master)
numInstances: 1 # optional (defaults to 1)
healthCheckPath: /api/ping
autoDeploy: false
envVars:
- key: PORT
value: 3001
- key: STORAGE_DIR
value: '/storage'
disk:
name: AnythingLLM Storage
mountPath: /storage
sizeGB: 10