-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
executable file
·41 lines (39 loc) · 1001 Bytes
/
docker-compose.prod.yml
File metadata and controls
executable file
·41 lines (39 loc) · 1001 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# ============================================================
# eVera v1.0 — Production Docker Compose Override
# Usage: docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d
# ============================================================
services:
vera:
restart: always
deploy:
resources:
limits:
cpus: "4.0"
memory: 8G
reservations:
cpus: "1.0"
memory: 2G
logging:
driver: json-file
options:
max-size: "50m"
max-file: "5"
environment:
- VERA_SERVER_API_KEY=${VERA_SERVER_API_KEY:?Set VERA_SERVER_API_KEY for production}
ollama:
restart: always
deploy:
resources:
limits:
memory: 16G
reservations:
memory: 8G
devices:
- driver: nvidia
count: all
capabilities: [gpu]
logging:
driver: json-file
options:
max-size: "50m"
max-file: "3"