Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try running WP-CLI with a different user
  • Loading branch information
gziolo committed Dec 19, 2018
commit 8bf2281783ad71bba2106724e486101391490da7
6 changes: 3 additions & 3 deletions bin/install-wordpress.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ docker-compose $DOCKER_COMPOSE_FILE_OPTIONS run --rm -u 33 $CLI plugin activate

if [ "$POPULAR_PLUGINS" = "true" ]; then
echo -e $(status_message "Activating popular plugins...")
docker-compose $DOCKER_COMPOSE_FILE_OPTIONS run --rm $CLI plugin install wordpress-seo --activate --quiet
docker-compose $DOCKER_COMPOSE_FILE_OPTIONS run --rm $CLI plugin install jetpack --activate --quiet
docker-compose $DOCKER_COMPOSE_FILE_OPTIONS run --rm $CLI plugin install advanced-custom-fields --activate --quiet
docker-compose $DOCKER_COMPOSE_FILE_OPTIONS run --rm -u 33 $CLI plugin install wordpress-seo --activate --quiet
docker-compose $DOCKER_COMPOSE_FILE_OPTIONS run --rm -u 33 $CLI plugin install jetpack --activate --quiet
docker-compose $DOCKER_COMPOSE_FILE_OPTIONS run --rm -u 33 $CLI plugin install advanced-custom-fields --activate --quiet
fi

# Install a dummy favicon to avoid 404 errors.
Expand Down