Skip to content

Commit 28b7ef6

Browse files
committed
Add script for pushing minimal-optimized Kali Docker image to Docker Hub
1 parent a35d05f commit 28b7ef6

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

push-minimal-optimized.bat

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
@echo off
2+
REM Script for pushing minimal-optimized image to Docker Hub
3+
REM This focuses on the minimal-optimized image which is smaller than standard but has more features than ultraslim
4+
5+
echo === Pushing Minimal-Optimized Kali Image to Docker Hub ===
6+
echo.
7+
8+
SET IMAGE=kovendhan5/kali-dockerized:minimal-optimized
9+
10+
echo Pushing %IMAGE%
11+
echo This is our optimized minimal image with XFCE desktop.
12+
echo.
13+
echo Press any key to start the push process...
14+
pause > nul
15+
16+
echo.
17+
echo Starting push process...
18+
docker push %IMAGE%
19+
20+
echo.
21+
if %ERRORLEVEL% equ 0 (
22+
echo Push successful! The minimal-optimized image is now available on Docker Hub.
23+
echo https://hub.docker.com/r/kovendhan5/kali-dockerized
24+
) else (
25+
echo Push encountered issues. You can try again later with:
26+
echo docker push %IMAGE%
27+
)
28+
29+
echo.
30+
pause

0 commit comments

Comments
 (0)