You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aiidalab-launch profiles delete now only accept one profile a time to delete. -a for delete all maybe too much but at least I can put more profiles to delete at once.
The text was updated successfully, but these errors were encountered:
Here is how I did in order to remove the volumes created with the container, I first stop the container and remove the container, which also should be managed by aiidalab-launch profiles remove, and then runs:
docker volume rm $(docker volume ls -qf dangling=true)
I am quite conflicted about this feature. It seems like an unnecessary complication and potentially dangerous, given that the workaround is to use a simple BASH loop or xargs. Also since we renamed the subcommand from profiles to profile it also seems confusing in that sense.
For example this oneliner would delete all profiles including the volumes (after #172 is merged)
aiidalab-launch profiles delete
now only accept one profile a time to delete.-a
for delete all maybe too much but at least I can put more profiles to delete at once.The text was updated successfully, but these errors were encountered: