mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-19 04:30:10 +01:00
26 lines
833 B
YAML
26 lines
833 B
YAML
# 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
|
|
region: oregon # optional (defaults to oregon)
|
|
plan: standard # optional (defaults to starter instance type)
|
|
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 |