Commit 9bca1b8a by amir

new scripts

parent ccb8fbf3
#!/bin/bash
# Delete all dangling images
docker rmi $(docker images -f "dangling=true" -q)
#!/bin/sh
sudo docker rm -f `sudo docker ps -a | grep "Exit" | awk '{print $1}'`
sudo docker rm -f `sudo docker ps -a | grep "Created" | awk '{print $1}'`
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment