/
NLObP
/
AAEmu
Обзор
Документация
Войти
/
NLObP
/
AAEmu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
Scripts/docker-update-local.ps1
20 строк
783 B
HCN
Fix Docker build & scripts (#1085)
19 авг 2024, 20:53
Не верифицирован
19 авг 2024, 20:53
41cbf7f
Код
Авторство
О чём код?
# Switch to the root folder Write-Host "Switching folder to root folder (AAEmu\)" Set-Location .. Write-Host "Done" Write-Host "Shutting all containers and Updating AAEmu..." docker compose down git pull Write-Host "Done" # Build the Dockerfile Write-Host "Rebuilding Docker Containers..." docker compose build --no-cache Write-Host "Done" # The End Write-Host "Launch by running 'docker compose up -d' in the root of AAEmu and connect to 127.0.0.1 in AAEmu.Launcher" Write-Host "You can stop the server by issuing the command 'docker compose down' in the root of AAEmu" Write-Host "If you want a development environment (with quick reload and auto-rebuild), use the command docker compose watch or docker compose up --watch and DO NOT CLOSE the terminal" Write-Host "Update done"