-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload.bat
35 lines (28 loc) · 910 Bytes
/
load.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
@echo off
REM
cd images || exit /b 1
REM Cargar la imagen my-router-image desde el archivo tar
docker load -i my-router-image.tar
if %ERRORLEVEL% NEQ 0 (
echo "Error al cargar la imagen my-router-image"
exit /b %ERRORLEVEL%
)
REM Cargar la imagen my-backend-image desde el archivo tar
docker load -i my-backend-image.tar
if %ERRORLEVEL% NEQ 0 (
echo "Error al cargar la imagen my-backend-image"
exit /b %ERRORLEVEL%
)
REM Cargar la imagen my-frontend1-image desde el archivo tar
docker load -i my-frontend1-image.tar
if %ERRORLEVEL% NEQ 0 (
echo "Error al cargar la imagen my-frontend1-image"
exit /b %ERRORLEVEL%
)
REM Cargar la imagen my-frontend2-image desde el archivo tar
docker load -i my-frontend2-image.tar
if %ERRORLEVEL% NEQ 0 (
echo "Error al cargar la imagen my-frontend2-image"
exit /b %ERRORLEVEL%
)
echo "Todas las imágenes se han cargado correctamente."