From 8c37eb50eabe975e993081ce279053fad36cbe83 Mon Sep 17 00:00:00 2001 From: Sam Chow Date: Thu, 5 Jul 2018 17:12:07 -0400 Subject: [PATCH] Change wording on error when no config volume --- static/js/pages/setup.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/static/js/pages/setup.js b/static/js/pages/setup.js index a647bb0c7..0b938cd99 100644 --- a/static/js/pages/setup.js +++ b/static/js/pages/setup.js @@ -205,11 +205,15 @@ import * as URI from 'urijs'; $scope.showMissingConfigDialog = function() { - var message = "A volume should be mounted into the container at /conf/stack: " + + var message = "It looks like Quay was not mounted with a configuration volume. The volume should be " + + "mounted into the container at /conf/stack. " + + "
If you have a tarball, please ensure you untar it into a directory and re-run this container with: " + "

docker run -v /path/to/config:/conf/stack
" + - "
Once fixed, restart the container. For more information, " + + "
If you haven't configured your Quay instance, please run the container with: " + + "

docker run <name-of-image> config 
" + + "For more information, " + "" + - "Read the Setup Guide" + "Read the Setup Guide"; var title = "Missing configuration volume"; CoreDialog.fatal(title, message);