docker-ckan/auxilliary stuff (delete be.../cleanup-docker-environment.sh

17 lines
323 B
Bash
Raw Normal View History

2021-12-10 14:42:47 +01:00
#!/bin/bash
# Stop all containers
docker kill $(docker ps -q)
# Remove all stopped containers
docker rm -f $(docker ps -aq)
# Remove all docker images
docker rmi $(docker images -q)
# Remove all volumes
docker volume rm $(docker volume ls -q)
# Remove ckan-docker_default network
docker network rm ckan-docker_default