Skip to content
Snippets Groups Projects
Commit 431faf58 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

Merge branch '1.25' into 'master'

1.25

See merge request !25
parents 26ec9275 6adf5a28
Branches
No related tags found
1 merge request!251.25
...@@ -29,10 +29,13 @@ ...@@ -29,10 +29,13 @@
# 2024-10-30 v1.22 <axel.hahn@unibe.ch> added: Open Mysql client in container # 2024-10-30 v1.22 <axel.hahn@unibe.ch> added: Open Mysql client in container
# 2024-10-30 v1.23 <axel.hahn@unibe.ch> added: show menu hints why some menu items are visible # 2024-10-30 v1.23 <axel.hahn@unibe.ch> added: show menu hints why some menu items are visible
# 2024-11-20 v1.24 <axel.hahn@unibe.ch> fix menu with started database less app; apply template permissions on target file; add $WEBURL; remove $frontendurl # 2024-11-20 v1.24 <axel.hahn@unibe.ch> fix menu with started database less app; apply template permissions on target file; add $WEBURL; remove $frontendurl
# 2024-11-20 v1.25 <axel.hahn@unibe.ch> fix menu startup containers
# ====================================================================== # ======================================================================
cd "$( dirname "$0" )" || exit 1 cd "$( dirname "$0" )" || exit 1
_version="1.25"
# init used vars # init used vars
gittarget= gittarget=
WEBURL= WEBURL=
...@@ -42,7 +45,6 @@ _self=$( basename "$0" ) ...@@ -42,7 +45,6 @@ _self=$( basename "$0" )
# shellcheck source=/dev/null # shellcheck source=/dev/null
. "${_self}.cfg" || exit 1 . "${_self}.cfg" || exit 1
_version="1.24"
# git@git-repo.iml.unibe.ch:iml-open-source/docker-php-starterkit.git # git@git-repo.iml.unibe.ch:iml-open-source/docker-php-starterkit.git
selfgitrepo="docker-php-starterkit.git" selfgitrepo="docker-php-starterkit.git"
...@@ -60,6 +62,7 @@ fgReset="\e[0m" ...@@ -60,6 +62,7 @@ fgReset="\e[0m"
# running containers # running containers
DC_WEB_UP=0 DC_WEB_UP=0
DC_DB_UP=0 DC_DB_UP=0
DC_ALL_UP=0
# repo of docker-php-starterkit is here? # repo of docker-php-starterkit is here?
DC_REPO=1 DC_REPO=1
...@@ -119,6 +122,8 @@ function _getStatus_docker(){ ...@@ -119,6 +122,8 @@ function _getStatus_docker(){
DC_WEB_UP=0 DC_WEB_UP=0
DC_DB_UP=0 DC_DB_UP=0
DC_ALL_UP=0
grep -q "${APP_NAME}-server" <<< "$_out" && DC_WEB_UP=1 grep -q "${APP_NAME}-server" <<< "$_out" && DC_WEB_UP=1
grep -q "${APP_NAME}-db" <<< "$_out" && DC_DB_UP=1 grep -q "${APP_NAME}-db" <<< "$_out" && DC_DB_UP=1
...@@ -128,6 +133,14 @@ function _getStatus_docker(){ ...@@ -128,6 +133,14 @@ function _getStatus_docker(){
return return
fi fi
if [ "${DC_WEB_UP}" = "1" ] && [ "${DC_DB_UP}" = "1" ]; then
DC_ALL_UP=1
fi
if [ "$DB_ADD" = "false" ] && [ "${DC_WEB_UP}" = "1" ]; then
DC_ALL_UP=1
fi
} }
# Get web url of the application # Get web url of the application
...@@ -204,9 +217,7 @@ function showMenu(){ ...@@ -204,9 +217,7 @@ function showMenu(){
echo "${_spacer}$( _key T ) - remove generated files" echo "${_spacer}$( _key T ) - remove generated files"
echo echo
fi fi
if [ $DC_WEB_UP -eq 0 ] \ if [ $DC_ALL_UP -eq 0 ] || [ $_bAll -eq 1 \
|| [ $DC_DB_UP -eq 0 ] && [ ! "$DB_ADD" = "false" ] \
|| [ $_bAll -eq 1 \
]; then ]; then
if [ $DC_CONFIG_CHANGED -eq 0 ] || [ $_bAll -eq 1 ]; then if [ $DC_CONFIG_CHANGED -eq 0 ] || [ $_bAll -eq 1 ]; then
menuhint $_bAll "A container is down and config is unchanged" menuhint $_bAll "A container is down and config is unchanged"
......
docs/images/main_menu.png

325 KiB | W: | H:

docs/images/main_menu.png

305 KiB | W: | H:

docs/images/main_menu.png
docs/images/main_menu.png
docs/images/main_menu.png
docs/images/main_menu.png
  • 2-up
  • Swipe
  • Onion skin
docs/images/main_menu_running_web.png

330 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment