From d0be9a04617677dfb4f58160ffcbe5e7ec867e60 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 28 Feb 2026 22:21:35 +0000 Subject: [PATCH] Fix Container Builder error for locally built image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add --pull=never to Extra Parameters so Unraid doesn't try to pull alwisp_web:latest from Docker Hub. The image is built locally in Step 2 and only exists on the host — without this flag the container fails to start with 'pull access denied'. https://claude.ai/code/session_015wpwmheufcxkBuXivrSHhd --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e33e533..21a1290 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,8 @@ docker build -t alwisp_web:latest . ### Step 4 – Add the Web container (alwisp_web) 1. Click **Add Container** again -2. Fill in the form: +2. Enable **Advanced View** (toggle in the top-right of the form) so the Extra Parameters field is visible +3. Fill in the form: | Field | Value | |---|---| @@ -112,8 +113,11 @@ docker build -t alwisp_web:latest . | **Network Type** | `br0` | | **Fixed IP** | `192.168.1.100` *(your reserved web IP)* | | **Restart Policy** | `Unless Stopped` | +| **Extra Parameters** | `--pull=never` | -3. Add **Environment Variables**: +> **Why `--pull=never`?** Unraid's Container Builder always tries to pull the repository name from Docker Hub before starting the container. Since `alwisp_web` is a locally built image that doesn't exist on Docker Hub, the pull fails. `--pull=never` tells Docker to use the locally built image as-is and skip the pull attempt. + +4. Add **Environment Variables**: | Key | Value | |---|---|