You are here

docker-compose.yml in Bamboo Twig 8.5

Same filename and directory in other branches
  1. 8.4 docker-compose.yml

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 in the proper contrib module directory.
  11. - .:/var/www/html/modules/contrib/bamboo_twig
  12. restart: always
  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: always