commerce_trustedshops-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/commerce_trustedshops
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
