From 47a794959a862fdcd3a6d1b8d2a871d6ca9e6506 Mon Sep 17 00:00:00 2001 From: anorien90 Date: Wed, 3 Dec 2025 13:04:28 +0000 Subject: [PATCH] fixed missing http: in ROOT_URL --- setup.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 5ce1d02..307fa2e 100755 --- a/setup.sh +++ b/setup.sh @@ -18,7 +18,8 @@ else sudo ufw status # Start the initial setup docker compose file echo "Starting initial setup container ..." - docker compose -f config/docker-compose.init.yml up -d + docker compose -f config/docker-compose.init.yml up -d --force-recreate + docker logs gitea-init echo "Container is running at http://$IPV4_ADDRESS:3000" echo "Please complete the setup in the web interface." read -r -p "Please add a runner key or press any key to continue after completing the setup..." RUNNER_KEY @@ -33,7 +34,7 @@ else echo "ROOT_URL=http://$IPV4_ADDRESS:3000" >> .env echo "Stopping initial setup container ..." docker compose -f config/docker-compose.init.yml down - docker logs gitea-init + echo "Disabling temporary port 3000 ..." sudo ufw delete allow 3000/tcp sudo ufw reload