mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-04 12:06:20 +08:00
10 lines
241 B
Bash
10 lines
241 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ ! -e docker_conf.inc ]; then
|
||
|
echo "This script must be run from within one of the subfolders"
|
||
|
exit 1
|
||
|
fi
|
||
|
. docker_conf.inc
|
||
|
docker rm $(docker ps -aq --filter ancestor="$DOCKER_IMAGE")
|
||
|
docker image rm "$DOCKER_IMAGE"
|