From b1595e479ce51c45e04bc95c52c33155fc9d547f Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Mon, 30 Mar 2026 23:11:37 -0700 Subject: [PATCH] Use the image's full government name --- README.md | 2 +- docker-compose.example.yml | 2 +- scripts/setup/install_docker.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e503b0f..9fc8976 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/docker-compose.example.yml b/docker-compose.example.yml index 5b22a90..2fbeeb3 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -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 diff --git a/scripts/setup/install_docker.sh b/scripts/setup/install_docker.sh index 012f573..a6951f4 100644 --- a/scripts/setup/install_docker.sh +++ b/scripts/setup/install_docker.sh @@ -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)\""