changeset 28:9ca1e7fe0f87

Docker: we update images, not containers
author Goffi <goffi@goffi.org>
date Mon, 20 Oct 2014 18:16:27 +0200
parents b2a09608bd9b
children b27e7f9ad479
files docker/libervia_cont.sh
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/docker/libervia_cont.sh	Mon Oct 20 16:55:45 2014 +0200
+++ b/docker/libervia_cont.sh	Mon Oct 20 18:16:27 2014 +0200
@@ -254,7 +254,7 @@
         printf "\n"
         ;;
     UPDATE)
-        printf "updating containers...\n"
+        printf "updating images...\n"
         errors=0
         for CONT in $CONTAINERS data; do
             printf "\n*** updating $CONT ***\n"
@@ -265,9 +265,9 @@
             fi
         done
         if [ $errors -eq 0 ]; then
-            printf "\n\nContainers are up-to-date\n"
+            printf "\n\nImages are up-to-date\n"
         else
-            printf "\n\nSome errors happened while updating containers\n"
+            printf "\n\nSome errors happened while updating images\n"
             exit 1
         fi
         ;;