The padding was off on the Gateway UI for the function
Store popup.
I have removed the 0padding css class from this element and left
it on the elements that require it
Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
Currently there are multiple deploy_stack.sh files and the user has to select the version appropriate to the target architecture so that the correct images are deployed. Further, the armhf deploy script lacks the basic auth by default scripting that is in the x86_64 version.
This change adds a case/select to deploy_stack.sh that will determine the hardware architecture and select the appropriate docker-compose file.
The deploy_stack.armhf.sh is also changed, rather than deleted, so that existing references are still valid.
Signed-off-by: Richard Gee <richard@technologee.co.uk>
The deployment script will enable basic-auth by default to help
avoid people deploying to a public IP with no protection from
malicious actors.
- In deploy_stash.sh /dev/random can hang on some systems, so using
urandom will give a better experience, if less "random" data.
For the purposes of creating an initial basic auth password this
is sufficient.
- Alpine Linux does not have the shasum command, but sha256sum.
- Tested on MacOS with and without --no-auth flag.
- Does not apply for armhf or powershell.
BASIC_AUTH env-var added by Vivek Syngh @viveksyngh
Signed-off-by: Alex Ellis (VMware) <alexellis2@gmail.com>
This commit updates the linux (both ARM and x86) deploy_stack scripts to
check for the availability of the Docker command and print the same
error returned by the PS1 script if not found.
Signed-off-by: John McCabe <john@johnmccabe.net>