-
Notifications
You must be signed in to change notification settings - Fork 31
/
install_linguacafe.bat
63 lines (51 loc) · 1.84 KB
/
install_linguacafe.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@echo off
setlocal EnableDelayedExpansion
REM Check if Docker is installed
docker --version >nul 2>&1
if %errorlevel% neq 0 (
echo Docker is not installed. Please install Docker and try again.
timeout /t 10 >nul
exit /b 1
)
REM Check if Docker Engine is running
docker info > nul 2>&1
if %errorlevel% neq 0 (
echo Docker Engine is not running. Please start Docker Desktop and try again.
timeout /t 10 >nul
exit /b 1
)
REM If the folder already exists, update and close
if exist linguacafe (
echo Installation of LingaCafe detected, updating...
cd linguacafe
curl -O https://raw.githubusercontent.com/simjanos-dev/LinguaCafe/main/docker-compose.yml
docker-compose pull
docker-compose up -d --force-recreate
timeout /t 10 >nul
exit /b 0
)
REM Display suggested installation directory including "linguacafe" folder
set "install_dir=%cd%\linguacafe"
echo The installation directory will be: !install_dir!
REM Ask user to confirm or cancel installation
set /p confirm_installation=Do you want to proceed with the installation? (Y/N):
REM Check user's response
if /i "!confirm_installation!"=="Y" (
echo Proceeding with installation...
REM Create directory if it doesn't exist and change to that directory
if not exist linguacafe (
mkdir linguacafe
mkdir linguacafe/storage
)
cd linguacafe
REM Download docker-compose.yml from the main branch
curl -O https://raw.githubusercontent.com/simjanos-dev/LinguaCafe/main/docker-compose.yml
docker-compose up -d
echo Your LinguaCafe server has started, you can soon open it in your browser on this url: http://localhost:9191. Sometimes this can take a few minutes on slower computers.
set /p close="Press Enter to close this window."
) else (
echo Installation canceled. Exiting...
exit /b 1
)
:end
endlocal