diff options
author | Adam Miller <admiller@redhat.com> | 2017-03-10 15:06:34 +0000 |
---|---|---|
committer | Adam Miller <admiller@redhat.com> | 2017-03-10 15:06:34 +0000 |
commit | d0af825b84f6ab2f70c35f64d1cc51391fa53ab0 (patch) | |
tree | f128fcc8013415b6a12bfce72b7d359fa1918b77 | |
parent | 5d7577e4c224c33aa31d653132dccbd89056da01 (diff) | |
download | ansible-d0af825b84f6ab2f70c35f64d1cc51391fa53ab0.tar.gz ansible-d0af825b84f6ab2f70c35f64d1cc51391fa53ab0.tar.xz ansible-d0af825b84f6ab2f70c35f64d1cc51391fa53ab0.zip |
set cleanup-docker-storage to run at 5 past midnight
Signed-off-by: Adam Miller <admiller@redhat.com>
-rw-r--r-- | files/osbs/cleanup-docker-storage | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/osbs/cleanup-docker-storage b/files/osbs/cleanup-docker-storage index 9d6344ca9..e6d63b4b7 100644 --- a/files/osbs/cleanup-docker-storage +++ b/files/osbs/cleanup-docker-storage @@ -1,4 +1,4 @@ SHELL=/bin/bash MAILTO=maxamillion@fedoraproject.org -0 0 * * * root for i in $(docker ps -a | awk '/Exited/ { print $1 }'); do docker rm $i; done && for i in $(docker images -q -f 'dangling=true'); do docker rmi $i; done
\ No newline at end of file +5 0 * * * root for i in $(docker ps -a | awk '/Exited/ { print $1 }'); do docker rm $i; done && for i in $(docker images -q -f 'dangling=true'); do docker rmi $i; done
\ No newline at end of file |