diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
index 78599938..c5d77ac6 100644
--- a/.github/workflows/docker-image.yml
+++ b/.github/workflows/docker-image.yml
@@ -67,5 +67,25 @@ jobs:
curl -d "Docker image build and push completed successfully for tag: ${{ env.IMAGE_TAG }}" \
https://ntfy.karmaashomepage.online/ssh-project-build
- - name: Cleanup Docker Images
- run: docker image prune -af
\ No newline at end of file
+ - name: Cleanup Docker Images on GHCR
+ run: |
+ # Get the list of images from ghcr.io
+ images=$(curl -s -H "Authorization: Bearer ${{ secrets.GHCR_TOKEN }}" \
+ "https://api.github.com/orgs/${{ github.repository_owner }}/packages/container/ssh-project/versions")
+
+ # List image tags and delete older versions (keep the latest 10)
+ count=0
+ max_images=10
+ for image in $(echo "$images" | jq -r '.[].id'); do
+ if [ $count -ge $max_images ]; then
+ echo "Deleting image $image"
+ curl -X DELETE -H "Authorization: Bearer ${{ secrets.GHCR_TOKEN }}" \
+ "https://api.github.com/orgs/${{ github.repository_owner }}/packages/container/ssh-project/versions/$image"
+ fi
+ count=$((count + 1))
+ done
+
+ - name: Cleanup Docker Images Locally
+ run: |
+ docker image prune -af
+ docker system prune -af --volumes
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 08fc9245..6633afe7 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,12 +4,9 @@
-
+
-
-
-
@@ -118,7 +115,7 @@
1733439468142
-
+
@@ -224,7 +221,15 @@
1733553902375
-
+
+
+ 1733555933987
+
+
+
+ 1733555933987
+
+
@@ -263,6 +268,7 @@
-
+
+
\ No newline at end of file