You are here

docker-compose.yml in Commerce Google Tag Manager 8.2

File

docker-compose.yml
View source
  1. version: '3.6'
  2. services:
  3. drupal:
  4. build: .
  5. depends_on:
  6. - db
  7. ports:
  8. - 8888:80
  9. volumes:
  10. # Mount the module Commerce Google Tag Manager in the proper contrib module directory.
  11. - .:/var/www/html/modules/contrib/commerce_google_tag_manager
  12. restart: unless-stopped
  13. db:
  14. image: mariadb:10.3.7
  15. environment:
  16. MYSQL_USER: drupal
  17. MYSQL_PASSWORD: drupal
  18. MYSQL_DATABASE: drupal
  19. MYSQL_ROOT_PASSWORD: root
  20. restart: unless-stopped