Commit ef0bdbb 1 parent 058ccec commit ef0bdbb Copy full SHA for ef0bdbb
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -631,8 +631,8 @@ def stop_frontend():
631
631
try :
632
632
# kill all the docker containers which contain the word "nebula"
633
633
commands = [
634
- """docker kill $(docker ps -q --filter ancestor =nebula-frontend) | Out-Null""" ,
635
- """docker rm $(docker ps -a -q --filter ancestor =nebula-frontend) | Out-Null""" ,
634
+ """docker kill $(docker ps -q --filter name =nebula-frontend) | Out-Null""" ,
635
+ """docker rm $(docker ps -a -q --filter name =nebula-frontend) | Out-Null""" ,
636
636
]
637
637
638
638
for command in commands :
@@ -645,8 +645,8 @@ def stop_frontend():
645
645
else :
646
646
try :
647
647
commands = [
648
- """docker kill $(docker ps -q --filter ancestor =nebula-frontend) > /dev/null 2>&1""" ,
649
- """docker rm $(docker ps -a -q --filter ancestor =nebula-frontend) > /dev/null 2>&1""" ,
648
+ """docker kill $(docker ps -q --filter name =nebula-frontend) > /dev/null 2>&1""" ,
649
+ """docker rm $(docker ps -a -q --filter name =nebula-frontend) > /dev/null 2>&1""" ,
650
650
]
651
651
652
652
for command in commands :
You can’t perform that action at this time.
0 commit comments