Added Ressource Reservation to have a (small) minimum available for paperless-gpt

This commit is contained in:
Kaindl Network 2025-02-10 00:07:57 +01:00 committed by GitHub
parent 0fcc4fcf30
commit e42181d544
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -111,6 +111,11 @@ services:
- ./prompts:/app/prompts # Mount the prompts directory
ports:
- "8080:8080"
deploy:
resources:
reservations:
cpus: '0.01'
memory: 20M
depends_on:
- paperless-ngx
```