Guest User

Untitled

a guest
Oct 14th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. version: '3'
  2. services:
  3. mariadb:
  4. image: 'bitnami/mariadb:latest'
  5. environment:
  6. - ALLOW_EMPTY_PASSWORD=yes
  7. - MARIADB_USER=bn_magento
  8. - MARIADB_PASSWORD=magento_db_password
  9. - MARIADB_DATABASE=bitnami_magento
  10. volumes:
  11. - 'mariadb_data:/bitnami'
  12. magento:
  13. image: 'bitnami/magento:latest'
  14. labels:
  15. kompose.service.type: nodeport
  16. environment:
  17. - MARIADB_HOST=mariadb
  18. - MARIADB_PORT_NUMBER=3306
  19. - MAGENTO_DATABASE_USER=bn_magento
  20. - MAGENTO_DATABASE_PASSWORD=magento_db_password
  21. - MAGENTO_DATABASE_NAME=bitnami_magento
  22. ports:
  23. - '80:80'
  24. - '443:443'
  25. volumes:
  26. - 'magento_data:/bitnami'
  27. depends_on:
  28. - mariadb
  29. volumes:
  30. mariadb_data:
  31. driver: local
  32. magento_data:
  33. driver: local
Add Comment
Please, Sign In to add comment