Wait for docker daemon to start
This commit is contained in:
parent
30269bdc4e
commit
588ce22acb
|
@ -14,6 +14,13 @@ if errorlevel 1 (
|
||||||
goto waitForDocker
|
goto waitForDocker
|
||||||
)
|
)
|
||||||
|
|
||||||
|
:waitForDaemon
|
||||||
|
docker info >nul 2>&1
|
||||||
|
if errorlevel 1 (
|
||||||
|
timeout /t 1 >nul
|
||||||
|
goto waitForDaemon
|
||||||
|
)
|
||||||
|
|
||||||
echo Starting docker compose
|
echo Starting docker compose
|
||||||
cd ".\mediamtx"
|
cd ".\mediamtx"
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
|
|
Loading…
Reference in New Issue