editor_advanced_image-8.x-2.x-dev/docker-compose.yml
docker-compose.yml
services:
drupal:
build: .
depends_on:
- db
ports:
- 8888:80
volumes:
# Mount the module in the proper contrib module directory.
- .:/var/www/html/modules/contrib/editor_advanced_image
restart: always
db:
image: mariadb:10.6
environment:
MYSQL_USER: drupal
MYSQL_PASSWORD: drupal
MYSQL_DATABASE: drupal
MYSQL_ROOT_PASSWORD: root
restart: always
chrome:
image: drupalci/webdriver-chromedriver:production
depends_on:
- drupal
ulimits:
core:
soft: -1
hard: -1
ports:
- '4444:4444'
- '9515:9515'
entrypoint:
- chromedriver
- '--log-path=/tmp/chromedriver.log'
- '--verbose'
# cspell:ignore whitelisted
- '--whitelisted-ips='
- '--allowed-origins=*'
