Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ass/commit/9677c0cbec800959c1196aafddb723ef10c3959e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
18 additions and
4 deletions
@ -17,16 +17,23 @@ do
fi
done
# Wait for user to confirm
echo "Continuing will run docker-compose. Continue? (Press Ctrl+C to abort)"
read -n 1 -s -r -p "Press any key to continue..."
echo Running setup...
# docker-compose up -d
docker-compose up -d
docker-compose up -d && \
# Run setup within the container
docker-compose exec ass npm run setup
docker-compose exec ass npm run setup && \
# Restart the container when complete
docker-compose restart
docker-compose restart && \
# Open the logs to ensure it is running
docker-compose logs -f --tail= 50 --no-log-prefix ass
docker-compose logs -f --tail= 50 --no-log-prefix ass && \
# Done!
echo "ass-docker for Linux installed!"
@ -13,6 +13,10 @@ if not exist "./config.json" echo. >> "./config.json"
if not exist " ./auth.json " echo . >> " ./auth.json "
if not exist " ./data.json " echo . >> " ./data.json "
REM Wait for user to confirm
ECHO Continuing will run docker-compose. Continue? (Press Ctrl+C to abort)
PAUSE
ECHO Running setup...
REM docker-compose up -d
@ -26,3 +30,6 @@ docker-compose restart
REM Open the logs to ensure it is running
docker-compose logs -f --tail=50 --no-log-prefix ass
REM Done!
echo ass-docker for Windows installed!