-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsave.bat
34 lines (28 loc) · 1015 Bytes
/
save.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
@echo off
REM
cd images || exit /b 1
REM Guardar la imagen my-router-image en un archivo tar
docker save -o my-router-image.tar my-router-image:latest
if %ERRORLEVEL% NEQ 0 (
echo "Error al guardar la imagen my-router-image"
exit /b %ERRORLEVEL%
)
REM Guardar la imagen my-backend-image en un archivo tar
docker save -o my-backend-image.tar my-backend-image:latest
if %ERRORLEVEL% NEQ 0 (
echo "Error al guardar la imagen my-backend-image"
exit /b %ERRORLEVEL%
)
REM Guardar la imagen my-frontend1-image en un archivo tar
docker save -o my-frontend1-image.tar my-frontend1-image:latest
if %ERRORLEVEL% NEQ 0 (
echo "Error al guardar la imagen my-frontend1-image"
exit /b %ERRORLEVEL%
)
REM Guardar la imagen my-frontend2-image en un archivo tar
docker save -o my-frontend2-image.tar my-frontend2-image:latest
if %ERRORLEVEL% NEQ 0 (
echo "Error al guardar la imagen my-frontend2-image"
exit /b %ERRORLEVEL%
)
echo "Todas las imágenes se han guardado y copiado correctamente."