mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-26 08:57:26 +02:00
5 lines
116 B
Bash
Executable file
5 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)
|