1
0

」 feat: finished last containers

This commit is contained in:
2025-03-04 10:47:25 +01:00
parent 57387462cf
commit 1538afbc7b
12 changed files with 1092 additions and 4 deletions

View File

@ -1 +0,0 @@
#!/bin/sh

View File

@ -0,0 +1,16 @@
#!/bin/sh
echo ${REDIS_HOSTNAME}
if [ -f "/redis.ok" ]; then
echo "[*] redis-cache already installed and configured"
else
echo "[*] Installing redis-cache plugin"
wp --allow-root config set WP_REDIS_HOST ${REDIS_HOSTNAME}
wp --allow-root config set WP_REDIS_PORT ${REDIS_PORT}
wp --allow-root config set WP_CACHE_KEY_SALT ${WP_URL}
wp --allow-root plugin install redis-cache --activate
wp --allow-root plugin update --all
wp --allow-root redis enable
touch /redis.ok
fi