Fix stale jayfield/novnc-server image tag

create.sh and the CLAUDE.md build example still referenced
jayfield/novnc-server, left over from before the image was renamed
to jayfield/xserver-novnc (the tag it's actually published under).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018QuKZRefXR3hVaUiXgeu6i
This commit is contained in:
2026-07-27 23:43:50 +02:00
co-authored by Claude Sonnet 5
parent 4a308711b4
commit 0266c882c7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ There is no build system, linter, or test suite — this is a Dockerfile plus a
```bash
# Build the image
docker build -t jayfield/novnc-server .
docker build -t jayfield/xserver-novnc .
# Create a container the way it's intended to be run (fixed name/ports/env)
./create.sh
+1 -1
View File
@@ -1,3 +1,3 @@
#/bin/bash
docker create --name='novnc-server' --net='bridge' -e 'DISPLAY_NUM'='99' -e 'SCREEN_W'='1536' -e 'SCREEN_H'='960' -p '5910:5999/tcp' -p '8099:8099/tcp' 'jayfield/novnc-server'
docker create --name='novnc-server' --net='bridge' -e 'DISPLAY_NUM'='99' -e 'SCREEN_W'='1536' -e 'SCREEN_H'='960' -p '5910:5999/tcp' -p '8099:8099/tcp' 'jayfield/xserver-novnc'