Fixes container lookup not being able to find a container running for specific image.
docker ps does not receive any more arguments and we have to filter by image ourselves
This commit is contained in:
@ -8,7 +8,7 @@ pull_sshd_image() {
|
||||
}
|
||||
|
||||
remove_running_sshd() {
|
||||
runnig_sshd=$(docker ps -q "$image_name")
|
||||
runnig_sshd=$(docker ps --format='{{.ID}}\t{{.Image}}' | grep "$image_name" | cut -f 1)
|
||||
[ "$runnig_sshd" ] && docker kill "$runnig_sshd" && docker rm "$runnig_sshd"
|
||||
true
|
||||
}
|
||||
|
Reference in New Issue
Block a user