Merge pull request #4 from jasonMPM/claude/isp-website-docker-EB8pB

Fix Container Builder error for locally built image
This commit is contained in:
jasonMPM
2026-02-28 16:25:00 -06:00
committed by GitHub

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 |
|---|---| |---|---|