Not worth the log noise

This commit is contained in:
David Heinemeier Hansson
2023-01-13 15:44:56 +01:00
parent be89077917
commit eed8165ec1

View File

@@ -7,12 +7,12 @@ namespace :mrsk do
namespace :prune do
desc "Prune unused images older than 30 days"
task :images do
on(MRSK.config.hosts) { MRSK.verbosity(:debug) { execute *MRSK.prune.images } }
on(MRSK.config.hosts) { execute *MRSK.prune.images }
end
desc "Prune stopped containers for the service older than 3 days"
task :containers do
on(MRSK.config.hosts) { MRSK.verbosity(:debug) { execute *MRSK.prune.containers } }
on(MRSK.config.hosts) { execute *MRSK.prune.containers }
end
end
end