Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions templates/drupal-10/docker-compose.server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ services:
environment:
- PHP_MAX_EXECUTION_TIME=30
- PHP_MEMORY_LIMIT=128M
- COMPOSER_VERSION=2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we (still) need this to run composer 2?

# Let drush know the site uri (makes using --uri redundant)
- DRUSH_OPTIONS_URI=https://${COMPOSE_SERVER_DOMAIN}
depends_on:
- memcached
volumes:
Expand Down
2 changes: 2 additions & 0 deletions templates/drupal-10/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ services:
- PHP_SENDMAIL_PATH=/usr/bin/msmtp --host=mail --port=1025 --read-recipients --read-envelope-from
- DOCKER_HOST_DOMAIN=${COMPOSE_DOMAIN}
- PHP_IDE_CONFIG=serverName=localhost
# Let drush know the site uri (makes using --uri redundant)
- DRUSH_OPTIONS_URI=http://${COMPOSE_DOMAIN}
depends_on:
mariadb:
condition: service_healthy
Expand Down
3 changes: 3 additions & 0 deletions templates/drupal-9/docker-compose.server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ services:
environment:
- PHP_MAX_EXECUTION_TIME=30
- PHP_MEMORY_LIMIT=128M
- COMPOSER_VERSION=2
# Let drush know the site uri (makes using --uri redundant)
- DRUSH_OPTIONS_URI=https://${COMPOSE_SERVER_DOMAIN}
depends_on:
- memcached
volumes:
Expand Down
2 changes: 2 additions & 0 deletions templates/drupal-9/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ services:
- PHP_SENDMAIL_PATH=/usr/bin/msmtp --host=mail --port=1025 --read-recipients --read-envelope-from
- DOCKER_HOST_DOMAIN=${COMPOSE_DOMAIN}
- PHP_IDE_CONFIG=serverName=localhost
# Let drush know the site uri (makes using --uri redundant)
- DRUSH_OPTIONS_URI=http://${COMPOSE_DOMAIN}
depends_on:
mariadb:
condition: service_healthy
Expand Down