/
NLObP
/
AAEmu
Обзор
Документация
Войти
/
NLObP
/
AAEmu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
Scripts/docker-update-local.sh
20 строк
743 B
HCN
Fix Docker build & scripts (#1085)
19 авг 2024, 20:53
Не верифицирован
19 авг 2024, 20:53
41cbf7f
Код
Авторство
О чём код?
# Switch to the root folder echo -e "Switching folder to root folder (AAEmu\)" cd .. echo -e "Done" echo -e "Shutting all containers and Updating AAEmu..." docker compose down git pull echo -e "Done" # Build the Dockerfile echo -e "Rebuilding Docker Containers..." docker compose build --no-cache echo -e "Done" # The End echo -e "Launch by running 'docker compose up -d' in the root of AAEmu and connect to 127.0.0.1 in AAEmu.Launcher" echo -e "You can stop the server by issuing the command 'docker compose down' in the root of AAEmu" echo -e "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" echo -e "Update done"