File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,15 @@ services:
2828 test : ["CMD-SHELL", "curl -fk https://${DOMAIN_NAME} || exit 1"]
2929 interval : 10s
3030 timeout : 5s
31- retries : 3
32- start_period : 10s
31+ retries : 6
32+ start_period : 60s
3333 environment :
3434 TZ : ' ${LOCAL_TIMEZONE}'
3535 labels :
3636 - ' docker-volume-backup.stop-during-backup=true'
3737 command : >
38- bash -c "apt-get -y update && apt-get install -y zip unzip && docker-php-ext-install pdo_mysql && docker-php-ext-enable pdo_mysql; curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer && if [ \"$$(ls -A ${WEBSERVER_DOC_ROOT}/webapp)\" ]; then composer update --working-dir=${WEBSERVER_DOC_ROOT}/webapp; else composer create-project -s dev laminas/laminas-mvc-skeleton webapp; composer require laminas/laminas-db:* laminas/laminas-cache:* --working-dir=${WEBSERVER_DOC_ROOT}/webapp --no-interaction; fi;
38+ bash -c "apt-get -y update && apt-get install -y zip unzip libicu-dev && docker-php-ext-install pdo_mysql intl && docker-php-ext-enable pdo_mysql intl; curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer &&
39+ if [ \"$$(ls -A ${WEBSERVER_DOC_ROOT}/webapp)\" ]; then composer update --working-dir=${WEBSERVER_DOC_ROOT}/webapp; else composer create-project -s dev laminas/laminas-mvc-skeleton webapp; composer require laminas/laminas-db:* laminas/laminas-cache:* --working-dir=${WEBSERVER_DOC_ROOT}/webapp --no-interaction; fi;
3940 grep -qe 'date.timezone = ${LOCAL_TIMEZONE}' ${PHP_INI_DIR_PREFIX}/php/conf.d/security.ini || echo 'date.timezone = ${LOCAL_TIMEZONE}' >> ${PHP_INI_DIR_PREFIX}/php/conf.d/security.ini; php-fpm"
4041
4142 webserver :
You can’t perform that action at this time.
0 commit comments