Advertisement
Guest User

Untitled

a guest
Aug 26th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. version: '2'
  2. services:
  3. mariadb:
  4. image: 'bitnami/mariadb:latest'
  5. volumes:
  6. - 'mariadb_data:/bitnami'
  7. environment:
  8. - MARIADB_USER=bn_wordpress
  9. - MARIADB_DATABASE=bitnami_wordpress
  10. - ALLOW_EMPTY_PASSWORD=yes
  11. wordpress:
  12. image: 'bitnami/wordpress:latest'
  13. labels:
  14. kompose.service.type: nodeport
  15. ports:
  16. - '80:80'
  17. - '443:443'
  18. volumes:
  19. - 'wordpress_data:/bitnami'
  20. depends_on:
  21. - mariadb
  22. environment:
  23. - MARIADB_HOST=mariadb
  24. - MARIADB_PORT_NUMBER=3306
  25. - WORDPRESS_DATABASE_USER=bn_wordpress
  26. - WORDPRESS_DATABASE_NAME=bitnami_wordpress
  27. - ALLOW_EMPTY_PASSWORD=yes
  28. - SMTP_HOST=smtp.mandrilapp.com
  29. - SMTP_PORT=587
  30. - SMTP_USER=Khimyan Curry
  31. - SMTP_PASSWORD=LRvC4__CVNXr4UnPAmsiEw
  32. - SMTP_PROTOCOL=tls
  33.  
  34. volumes:
  35. mariadb_data:
  36. driver: local
  37. wordpress_data:
  38. driver: local
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement