Guest User

Untitled

a guest
Apr 28th, 2018
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. version: '3.4'
  2.  
  3. services:
  4.  
  5. wordpress:
  6. image: arm32v7/wordpress
  7. ports:
  8. - 80:80
  9. environment:
  10. WORDPRESS_DB_PASSWORD: wordpress
  11. WORDPRESS_DB_HOST: mysql:3306
  12. WORDPRESS_DB_USER: wordpress
  13.  
  14. mysql:
  15. image: hypriot/rpi-mysql:5.5
  16. volumes:
  17. - db_data:/var/lib/mysql
  18. environment:
  19. MYSQL_ROOT_PASSWORD: password
  20. MYSQL_DATABASE: wordpress
  21. MYSQL_USER: wordpress
  22. MYSQL_PASSWORD: wordpress
  23.  
  24. volumes:
  25. db_data:
  26. driver: local
  27. driver_opt:
  28. type: "nfs"
  29. o: "addr=nfs.r0b.cc,rw"
  30. device: ":/nfs/3fatmen/mysql_wordpress"
Add Comment
Please, Sign In to add comment