chore: publish 0.1.1+5.59.4-wordpress-php8.1 release

This commit is contained in:
Philipp Rothmann 2023-04-03 10:24:07 +02:00
parent 715a96a376
commit 95903d25f4
4 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@ LETS_ENCRYPT_ENV=production
PROJECT_NAME=example
CIVICRM_COMPONENTS=CiviEvent,CiviContribute,CiviMember,CiviMail,CiviReport
# CIVICRM_EXTENSIONS=shoreditch mosaico
# CIVICRM_EXTENSIONS=mosaico
CIVICRM_DB_NAME=civicrm
CIVICRM_DB_USER=civicrm
CIVICRM_DB_HOST=mysql

View File

@ -26,11 +26,11 @@ For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech).
### Install extensions
set them in the env config and run: `abra app cmd civi.dev.local-it.cloud app install_extensions`
set them in the env config and run: `abra app cmd civi.example.org app install_extensions`
to install unoffical extension run smth like:
```
abra app cmd civi.dev.local-it.cloud app install_custom_extension shoreditch https://github.com/civicrm/org.civicrm.shoreditch
abra app cmd civi.dev.local-it.cloud app install_custom_extension shoreditchwpworkarounds https://lab.civicrm.org/extensions/shoreditchwpworkarounds.git
```
abra app cmd civi.example.org app install_custom_extension shoreditch https://github.com/civicrm/org.civicrm.shoreditch
abra app cmd civi.example.org app install_custom_extension shoreditchwpworkarounds https://lab.civicrm.org/extensions/shoreditchwpworkarounds.git
```

View File

@ -57,7 +57,7 @@ services:
#- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=0.1.0+5.59.4-wordpress-php8.1"
- "coop-cloud.${STACK_NAME}.version=0.1.1+5.59.4-wordpress-php8.1"
- "backupbot.backup=true"
- "backupbot.backup.path=/var/www/html/wp-content/uploads"
healthcheck:

View File

@ -36,7 +36,7 @@ if [[ "${1-default}" == "cron" ]]; then
exit $?
fi
until mysql -e '\q' -h db -p"${WORDPRESS_DB_PASS}" && mysql -e '\q' -h "${CIVICRM_DB_HOST}" -p"${CIVICRM_DB_PASS}"; do
until mysql -e '\q' -h"${WORDPRESS_DB_HOST}" -u"${WORDPRESS_DB_USER}" -p"${WORDPRESS_DB_PASS}" && mysql -e '\q' -h"${CIVICRM_DB_HOST}" -u"${CIVICRM_DB_USER}" -p"${CIVICRM_DB_PASS}"; do
echo "============ Waiting for db container to come up============"
sleep 2
done;