initial_commit

This commit is contained in:
2025-11-14 16:38:54 +01:00
commit 69c8db6f55
4 changed files with 118 additions and 0 deletions

16
tools/inst_plugins.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
set -euo pipefail
dc_wp() {
docker compose exec -u www-data wordpress wp $@
}
dc_wp plugin install redis-cache --activate
dc_wp redis enable
dc_wp plugin install wp-mail-smtp --activate
echo "Done." >&2