entity_to_text-1.0.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/entity_to_text
restart: unless-stopped
db:
image: mariadb:10.6
environment:
MYSQL_USER: drupal
MYSQL_PASSWORD: drupal
MYSQL_DATABASE: drupal
MYSQL_ROOT_PASSWORD: root
restart: unless-stopped
