misskey-admin-scripts-n-tips/cleanup_docker.sh

8 lines
121 B
Bash
Raw Permalink Normal View History

2021-12-27 18:16:28 +00:00
#!/bin/bash
#
# Prune all orphaned images, and stopped containers
#
docker container prune
docker image prune -a
exit $?