Use the image's full government name

This commit is contained in:
Jack Kingsman
2026-03-30 23:11:37 -07:00
parent 25df69bfbc
commit b1595e479c
3 changed files with 3 additions and 3 deletions

View File

@@ -143,7 +143,7 @@ docker compose up -d
The example file and setup script default to the published Docker Hub image. To build locally from your checkout instead, replace:
```yaml
image: jkingsman/remoteterm-meshcore:latest
image: docker.io/jkingsman/remoteterm-meshcore:latest
```
with:

View File

@@ -1,7 +1,7 @@
services:
remoteterm:
# build: .
image: jkingsman/remoteterm-meshcore:latest
image: docker.io/jkingsman/remoteterm-meshcore:latest
# Optional on Linux: run container as your host user to avoid root-owned files in ./data
# This is less reliable for serial-device access than running as root and may require

View File

@@ -405,7 +405,7 @@ mkdir -p "$REPO_DIR/data"
if [ "$IMAGE_MODE" = "build" ]; then
echo " build: ."
else
echo " image: jkingsman/remoteterm-meshcore:latest"
echo " image: docker.io/jkingsman/remoteterm-meshcore:latest"
fi
if [[ "$RUN_AS_HOST_USER" =~ ^[Yy]$ ]]; then
echo " user: \"$(id -u):$(id -g)\""