Compare commits

...

3 Commits

Author SHA1 Message Date
Moritz 7e4ff5c075 add alakazam integration file alaconnect.yml
continuous-integration/drone/push Build is passing Details
2024-05-13 17:34:43 +02:00
3wc 564db5b63f chore: publish 2.9.1+6.5.3 release
continuous-integration/drone/tag Build is passing Details
continuous-integration/drone/push Build is passing Details
2024-05-11 12:18:46 -03:00
Moritz cf9b5f529e chore: publish 2.9.0+6.5.2 release
continuous-integration/drone/tag Build is passing Details
continuous-integration/drone/push Build is passing Details
2024-04-15 16:50:18 +02:00
3 changed files with 27 additions and 2 deletions

13
abra.sh
View File

@ -8,6 +8,17 @@ wp() {
su -p www-data -s /bin/bash -c "/usr/local/bin/wp $@"
}
update() {
wp "core update-db"
wp "plugin update --all"
wp "plugin auto-updates enable --all"
wp "theme update --all"
wp "theme auto-updates enable --all"
wp "language core update"
wp "language plugin update --all"
wp "language theme update --all"
}
core_install(){
ADMIN=admin
if [ -n "$AUTHENTIK_DOMAIN" ]
@ -27,6 +38,7 @@ core_install(){
else
wp "option set default_role subscriber"
fi
wp "theme auto-updates enable --all"
wp 'plugin auto-updates enable --all' || exit 0
}
@ -39,6 +51,7 @@ set_authentik(){
fi
wp "user create akadmin admin@example.com --role=administrator"
wp "plugin install --activate daggerhart-openid-connect-generic"
wp 'plugin auto-updates enable daggerhart-openid-connect-generic'
wp "option update --format=json openid_connect_generic_settings '
{
\"login_type\":\"$LOGIN_TYPE\",

12
alaconnect.yml Normal file
View File

@ -0,0 +1,12 @@
authentik:
uncomment:
- compose.authentik.yml
- AUTHENTIK_DOMAIN
- SECRET_AUTHENTIK_SECRET_VERSION
- SECRET_AUTHENTIK_ID_VERSION
- LOGIN_TYPE
execute:
- app set_authentik
shared_secrets:
wordpress_secret: authentik_secret
wordpress_id: authentik_id

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: "wordpress:6.5.0"
image: "wordpress:6.5.3"
volumes:
- "wordpress_content:/var/www/html/wp-content/"
networks:
@ -60,7 +60,7 @@ services:
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
- "backupbot.backup=true"
- "backupbot.backup.path=/var/www/html"
- "coop-cloud.${STACK_NAME}.version=2.8.0+6.5.0"
- "coop-cloud.${STACK_NAME}.version=2.9.1+6.5.3"
db:
image: "mariadb:11.3"