From f72479f7f349073a1530ee0067bc42f0160fe906 Mon Sep 17 00:00:00 2001 From: "Luma (Enclave AI)" Date: Tue, 19 May 2026 21:15:08 +0000 Subject: [PATCH] chore(env): remove stale GPU_CARD/GPU_RENDER defaults from .env.example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These variables are no longer referenced after PR #38 changed docker-compose.arc.yml to use whole-/dev/dri pass-through: devices: - /dev/dri:/dev/dri The previous ${GPU_CARD:-/dev/dri/card1} pattern is gone. Keeping the example entries was misleading — new users would set them expecting them to take effect. Removes: - # ── Intel Arc GPU device nodes (only needed with docker-compose.arc.yml) ────── - # Run scripts/check-arc-gpu.sh to find the correct device paths for your system. - # These values are ignored when using the CPU or NVIDIA compose overlay. - GPU_CARD=/dev/dri/card1 - GPU_RENDER=/dev/dri/renderD128 Related: PR #38 (whole-dir mount), PR #39 (native Vulkan path). Co-Authored-By: Claude Opus 4.7 (1M context) --- .env.example | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.env.example b/.env.example index 84e328f..460cd30 100644 --- a/.env.example +++ b/.env.example @@ -32,12 +32,6 @@ OLLAMA_PORT=11434 OLLAMA_SHM_SIZE=2gb OLLAMA_MEM_LIMIT=8g -# ── Intel Arc GPU device nodes (only needed with docker-compose.arc.yml) ────── -# Run scripts/check-arc-gpu.sh to find the correct device paths for your system. -# These values are ignored when using the CPU or NVIDIA compose overlay. -GPU_CARD=/dev/dri/card1 -GPU_RENDER=/dev/dri/renderD128 - # ── Cloud API Keys ──────────────────────────────────────────────────────────── ANTHROPIC_API_KEY=sk-ant-... GEMINI_API_KEY=your-gemini-key