From df60cfd270be4e13e9c0d1d05982c6d3d6498c46 Mon Sep 17 00:00:00 2001 From: xtcnet Date: Sat, 7 Mar 2026 21:08:39 +0700 Subject: [PATCH] Update install.sh to use Cloud Build image from GHCR --- install.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 40f9108..3cf17d7 100644 --- a/install.sh +++ b/install.sh @@ -61,7 +61,7 @@ function install_npm_wg() { version: "3.8" services: npm-wg: - image: xtcnet/npm-wg:latest # NOTE: Update with actual Docker Hub image if pushed, or leave as npm-wg:latest if built locally. Assuming docker hub image is available or they build it. + image: ghcr.io/xtcnet/d3v-npmwg:latest # Wait, the README uses npm-wg:latest. container_name: npm-wg restart: unless-stopped @@ -83,8 +83,6 @@ services: environment: WG_HOST: "$WG_HOST" EOF - # Fix the image name - sed -i 's/xtcnet\/npm-wg:latest/npm-wg:latest/g' "$DOCKER_COMPOSE_YML" echo -e "${GREEN}Docker compose file created at $DOCKER_COMPOSE_YML${NC}" cd "$INSTALL_DIR" || exit