From 1908dd57d554533369cf070ba3f1f9be20d2c2c3 Mon Sep 17 00:00:00 2001 From: Mayank Date: Wed, 8 Jul 2020 16:28:27 +0530 Subject: [PATCH] Change to official repo --- stage2/05-docker-compose/01-run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stage2/05-docker-compose/01-run.sh b/stage2/05-docker-compose/01-run.sh index 0e5a97c..b9777bb 100755 --- a/stage2/05-docker-compose/01-run.sh +++ b/stage2/05-docker-compose/01-run.sh @@ -6,7 +6,7 @@ echo "Installing docker-compose from pip3, and also setting up the box folder st on_chroot << EOF pip3 install docker-compose cd /home/${FIRST_USER_NAME} -wget -qO- "https://raw.githubusercontent.com/mayankchhabra/umbrel/v0.1.3-beta/install-box.sh" | sh +wget -qO- "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.3-beta/install-box.sh" | sh chown -R ${FIRST_USER_NAME}:${FIRST_USER_NAME} /home/${FIRST_USER_NAME} EOF @@ -31,7 +31,7 @@ cp files/compose-service ${ROOTFS_DIR}/etc/init.d/umbrelbox echo "Pulling Docker images required to run Umbrel services" -wget -q "https://raw.githubusercontent.com/mayankchhabra/umbrel/v0.1.3-beta/docker-compose.yml" +wget -q "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.3-beta/docker-compose.yml" IMAGES=$(grep '^\s*image' docker-compose.yml | sed 's/image://' | sed 's/\"//g' | sed '/^$/d;s/[[:blank:]]//g' | sort | uniq) echo "List of images to download: $IMAGES"