Initial commit

This commit is contained in:
Yaser
2026-08-13 20:22:49 +03:30
commit 94f0279983
69 changed files with 83770 additions and 0 deletions

19
scripts/build.bat Normal file
View File

@@ -0,0 +1,19 @@
@echo off
setlocal EnableExtensions
chcp 65001 >nul
set "ROOT=%~dp0.."
set "DOCKER_BUILDKIT=1"
echo.
echo Building custom/tower:1 ...
docker build -t custom/tower:1 "%ROOT%"
if errorlevel 1 exit /b 1
echo.
echo Done. Restart AdminTower in Alvand-P:
echo docker compose up -d --force-recreate AdminTower
echo.
endlocal
exit /b 0