fix: reduce RAM requirements for Mac/Ubuntu installers to 8GB

- Mac installer: 16GB → 8GB
- Ubuntu installer: 16GB → 8GB
- DGX installer: 64GB → 32GB (matches container reservations)
- x86 docker-compose: reduced container memory limits to match ARM64

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
HackWeasel
2025-12-29 13:16:10 -05:00
parent 81be5f6db8
commit 8b0c2b5595
4 changed files with 11 additions and 11 deletions

View File

@@ -35,17 +35,17 @@ services:
tenant-postgres-primary:
environment:
# x86_64 Performance settings - optimized for typical server specs
POSTGRES_SHARED_BUFFERS: 2GB
POSTGRES_EFFECTIVE_CACHE_SIZE: 6GB
POSTGRES_SHARED_BUFFERS: 1GB
POSTGRES_EFFECTIVE_CACHE_SIZE: 3GB
POSTGRES_MAINTENANCE_WORK_MEM: 512MB
POSTGRES_MAX_CONNECTIONS: 300
POSTGRES_WORK_MEM: 128MB
deploy:
resources:
limits:
memory: 8G
reservations:
memory: 4G
reservations:
memory: 2G
labels:
- "gt2.platform=x86_64"
@@ -69,8 +69,8 @@ services:
deploy:
resources:
limits:
memory: 16G
memory: 4G
reservations:
memory: 8G
memory: 3G
labels:
- "gt2.platform=x86_64"