implemented multisite

This commit is contained in:
2024-01-13 15:31:50 -06:00
parent 5cee959904
commit 39dc7800d9
29 changed files with 348724 additions and 200 deletions

16
network/wp-theme-install.sh Executable file
View File

@@ -0,0 +1,16 @@
WP_THEMES="rookie"
if [ "$#" -lt 1 ]; then
echo "Error: COMPOSE_FILE argument is missing."
echo "Usage: $0 COMPOSE_FILE"
exit 1
fi
COMPOSE_FILE="$1"
SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
ENV_FILE=$SCRIPTPATH/.env
# this env file is not being read and i don't know why.
# it's actually being loaded from compose.yml
docker compose -f $COMPOSE_FILE run --env WP_THEMES="$WP_THEMES" --rm -it wp-cli sh -c \
'wp theme install $WP_THEMES'