Skip to content

Instantly share code, notes, and snippets.

@anthonyhartnell
anthonyhartnell / gist:443c4ab7524d257d746750fa80ef2ba7
Last active August 8, 2019 09:06
WP CLI command shortcut for Docker
# Docker WP CLI command shortcut
# Step 1. Put this in your ~/.bashrc or ~/.zshrc file
wp() {
docker-compose exec php wp "$@" --allow-root
}
# Step 2. Open up a new shell to reload the config
# Step 3. Usage - type `wp post list` or any other standard wp cli command.