2024-01-20 17:45:24 +01:00
|
|
|
|
@echo off
|
|
|
|
|
chcp 65001 >nul
|
|
|
|
|
|
2024-01-20 18:06:54 +01:00
|
|
|
|
cd %~dp0
|
2024-01-20 17:45:24 +01:00
|
|
|
|
docker compose -f ../docker/docker-compose.yml up cat-detection -d
|
|
|
|
|
if %errorlevel% neq 0 (
|
|
|
|
|
echo [31mStarting docker container failed.[0m
|
|
|
|
|
exit /b 1
|
|
|
|
|
)
|