Advertisement
brunovilarins

teste

Apr 27th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. wordpress:
  2. image: wordpress
  3. volumes:
  4. - ~/wordpress/wp_html:/var/www/html
  5. links:
  6. - wordpress_db:mysql
  7. ports:
  8. - 8080:80
  9. wordpress_db:
  10. image: mariadb
  11. environment:
  12. MYSQL_ROOT_PASSWORD: examplepass
  13. phpmyadmin:
  14. image: corbinu/docker-phpmyadmin
  15. links:
  16. - wordpress_db:mysql
  17. ports:
  18. - 8181:80
  19. environment:
  20. MYSQL_USERNAME: root
  21. MYSQL_ROOT_PASSWORD: examplepass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement