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);