docker-compose upTo stop and remove all containers of the sample application run:
docker-compose downTo stop and remove all containers with Volume of the sample application run:
docker-compose down -v- Make Sure to modify the enviromental variable DRUPAL_TRUSTED_HOST to be configured according to your domain - Reference
DRUPAL_TRUSTED_HOST: '^rajawat\.com$'- Before installation of drupal, you must have to create the extension pg_trgm using below command on your terminal
docker exec -it drupaldb psql -U postgres -c "CREATE EXTENSION IF NOT EXISTS pg_trgm;"
GO