File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments