Watchtower spawning copies of itself

If you do have 100’s of watchtower processes running then this will help stop them

docker ps -a | awk ‘{ print $1,$2 }’ | grep watchtower:latest | awk ‘{print $1 }’ | xargs -I {} docker stop {}

Change the stop to an rm and you can then remove them all.