Fix Container Builder error for locally built image

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
This commit is contained in:
Claude
2026-02-28 22:21:35 +00:00
parent eafc11864f
commit d0be9a0461

View File

@@ -103,7 +103,8 @@ docker build -t alwisp_web:latest .
### Step 4 Add the Web container (alwisp_web) ### Step 4 Add the Web container (alwisp_web)
1. Click **Add Container** again 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 | | Field | Value |
|---|---| |---|---|
@@ -112,8 +113,11 @@ docker build -t alwisp_web:latest .
| **Network Type** | `br0` | | **Network Type** | `br0` |
| **Fixed IP** | `192.168.1.100` *(your reserved web IP)* | | **Fixed IP** | `192.168.1.100` *(your reserved web IP)* |
| **Restart Policy** | `Unless Stopped` | | **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 | | Key | Value |
|---|---| |---|---|