20 lines
334 B
Batchfile
20 lines
334 B
Batchfile
@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
|