Skip to content

Commit

Permalink
fix(Docker): Fixed docker volume cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ignacio-penas committed Feb 18, 2025
1 parent 39f1ec4 commit 20d70e5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions validation_framework/deployer/coe/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,7 @@ def remove_engine(self, uuid: NuvlaUUID = None, black_list: list = None):
command_list: list = ['docker service rm $(docker service ls -q)',
'docker rm $(docker ps -a -q)',
'docker network prune --force',
'docker volume prune --force']
# docker volume rm $(docker volume ls -q)
'docker volume rm $(docker volume ls -q)']

for cmd in command_list:
try:
Expand Down

0 comments on commit 20d70e5

Please sign in to comment.