Hooks¶
Most DDEV commands provide hooks to run tasks before or after the main command executes. To automate setup tasks specific to your project, define them in the project’s config.yaml
file.
To define command tasks in your configuration, specify the desired command hook as a subfield to hooks
, then a list of tasks to run:
hooks:
post-start:
- exec: "simple command expression"
- exec: "ls >/dev/null && touch /var/www/html/somefile.txt"
- exec-host: "simple command expression"
post-import-db:
- exec: "drush uli"
Supported Command Hooks¶
-
pre-start
: Hooks intoddev start
. Execute tasks before the project environment starts.Tip
Only
exec-host
tasks can run duringpre-start
because the containers are not yet running. See Supported Tasks below. -
post-start
: Execute tasks after the project environment has started. pre-import-db
andpost-import-db
: Execute tasks before or after database import.pre-import-files
andpost-import-files
: Execute tasks before or after files are imported.pre-composer
andpost-composer
: Execute tasks before or after thecomposer
command.pre-stop
,pre-config
,post-config
,pre-exec
,post-exec
,pre-pull
,post-pull
,pre-push
,post-push
,pre-snapshot
,post-snapshot
,pre-delete-snapshot
,post-delete-snapshot
,pre-restore-snapshot
,post-restore-snapshot
: Execute as the name suggests.-
post-stop
: Hooks intoddev stop
. Execute tasks after the project environment stopped.Tip
Only
exec-host
tasks can run duringpost-stop
. See Supported Tasks below.
Supported Tasks¶
DDEV currently supports these tasks:
exec
to execute a command in any service/container.exec-host
to execute a command on the host.composer
to execute a Composer command in the web container.
exec
: Execute a shell command in a container (defaults to web container)¶
Value: string providing the command to run. Commands requiring user interaction are not supported. You can also add a “service” key to the command, specifying to run it on the db
container or any other container you use.
Example: Use Drush to rebuild all caches and get a user login link after database import.
Example: Use wp-cli to replace the production URL with development URL in a WordPress project’s database.
hooks:
post-import-db:
- exec: wp search-replace https://www.myproductionsite.com http://mydevsite.ddev.site
Example: Use Drush to sanitize a database by removing or obfuscating user data.
Example: Add an extra database before import-db
, executing in db
container.
hooks:
pre-import-db:
- exec: mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS some_new_database;"
service: db
Example: Add the common ll
alias into the web
container’s .bashrc
file.
Tip
This could be done more efficiently via .ddev/web-build/Dockerfile
as explained in Customizing Images.
Advanced usages may require running commands directly with explicit arguments. This approach is useful when Bash interpretation is not required (no environment variables, no redirection, etc.).
exec-host
: Execute a shell command on the host system¶
Value: string providing the command to run. Commands requiring user interaction are not supported.
composer
: Execute a Composer command in the web container¶
Value: string providing the Composer command to run.
Example:
WordPress Example¶
hooks:
post-start:
# Install WordPress after start
- exec: "wp config create --dbname=db --dbuser=db --dbpass=db --dbhost=db"
- exec: "wp core install --url=http://mysite.ddev.site --title=MySite --admin_user=admin --admin_email=admin@mail.test"
post-import-db:
# Update the URL of your project throughout your database after import
- exec: "wp search-replace https://www.myproductionsite.com http://mydevsite.ddev.site"
Drupal 7 Example¶
hooks:
post-start:
# Install Drupal after start if not installed already
- exec: "(drush status bootstrap | grep -q Successful) || drush site-install -y --db-url=db:db@db/db"
# Generate a one-time login link for the admin account
- exec: "drush uli"
post-import-db:
# Set the project name
- exec: "drush vset site_name MyDevSite"
# Enable the environment indicator module
- exec: "drush en -y environment_indicator"
# Clear the cache
- exec: "drush cc all"
Drupal 10 Example¶
hooks:
post-start:
# Install Composer dependencies from the web container
- composer: install
# Generate a one-time login link for the admin account
- exec: "drush user:login"
post-import-db:
# Sanitize the database
- exec: "drush sql:sanitize"
# Apply any database updates
- exec: "drush updatedb"
# Rebuild all caches
- exec: "drush cache:rebuild"