Compare commits

...

7 Commits

Author SHA1 Message Date
9b1e36f8c8 chore: publish 2.3.2+6.2.0 release 2023-04-20 20:51:36 +02:00
f624ef2dc6 fix locale: replace deprecated function 2023-04-20 20:44:38 +02:00
40e89c874a fix locale 2023-04-20 20:38:42 +02:00
7c725fbf85 chore: publish 2.3.1+6.2.0 release 2023-04-18 18:49:27 +02:00
ed587cd983 add auto update and timeout env 2023-04-18 18:23:23 +02:00
85d910f7ea fix adding timeout label 2023-04-18 14:48:50 +02:00
bcb911c6e0 add timeout label 2023-04-18 13:02:53 +02:00
3 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,6 @@
TYPE=wordpress
TIMEOUT=300
ENABLE_AUTO_UPDATE=true
DOMAIN=wordpress.example.com
## Domain aliases

View File

@ -15,6 +15,8 @@ core_install(){
fi
chown www-data:www-data /var/www/html/wp-content
wp "core install --url=$DOMAIN --title=\"$TITLE\" --admin_user=$ADMIN --admin_email=$ADMIN_EMAIL --locale=$LOCALE --skip-email"
wp "language core install $LOCALE"
wp "site switch-language $LOCALE"
wp "rewrite structure '/%year%/%monthnum%/%day%/%postname%/'"
}

View File

@ -50,9 +50,10 @@ services:
#- "traefik.http.routers.${STACK_NAME}.rule=HostRegexp(`{subdomain:.+}.${DOMAIN}`, `${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "coop-cloud.${STACK_NAME}.version=2.3.0+6.2.0"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
- "backupbot.backup=true"
- "backupbot.backup.path=/var/www/html"
- "coop-cloud.${STACK_NAME}.version=2.3.2+6.2.0"
db:
image: "mariadb:10.11"