mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-23 14:52:24 +00:00
6 lines
116 B
Bash
Executable File
6 lines
116 B
Bash
Executable File
#!/bin/bash
|
|
# Delete all containers
|
|
docker rm $(docker ps -a -q)
|
|
# Delete all images
|
|
docker rmi $(docker images -q)
|