Skip to content

Commit 55e106f

Browse files
yasinBursaliclaude
andcommitted
fix(macos): rename LLAMA_MEMORY_LIMIT to LLAMA_SERVER_MEMORY_LIMIT in apple overlay
docker-compose.apple.yml used LLAMA_MEMORY_LIMIT but .env.example, .env.schema.json, docker-compose.nvidia.yml, and the llama-server README all document LLAMA_SERVER_MEMORY_LIMIT as the canonical variable name. The mismatch meant the user's memory limit setting was silently ignored on the macOS CPU path, always falling back to the 32G hardcoded default. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 798e1f5 commit 55e106f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dream-server/docker-compose.apple.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
resources:
1616
limits:
1717
cpus: '${LLAMA_CPU_LIMIT:-8.0}'
18-
memory: ${LLAMA_MEMORY_LIMIT:-32G}
18+
memory: ${LLAMA_SERVER_MEMORY_LIMIT:-32G}
1919
reservations:
2020
cpus: '2.0'
2121
memory: 4G

0 commit comments

Comments
 (0)