From 95903d25f4e5742009dbda5c13548d125f245cd2 Mon Sep 17 00:00:00 2001 From: Philipp Rothmann Date: Mon, 3 Apr 2023 10:24:07 +0200 Subject: [PATCH] chore: publish 0.1.1+5.59.4-wordpress-php8.1 release --- .env.sample | 2 +- README.md | 8 ++++---- compose.yml | 2 +- entrypoint.sh | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.env.sample b/.env.sample index 2fccab4..b869191 100644 --- a/.env.sample +++ b/.env.sample @@ -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 diff --git a/README.md b/README.md index a3b1ed9..e7f36db 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/compose.yml b/compose.yml index e5807e7..f007126 100644 --- a/compose.yml +++ b/compose.yml @@ -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: diff --git a/entrypoint.sh b/entrypoint.sh index f4f6dd6..8272776 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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;