Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. wordpress:
  2. build: .
  3. command: php -S 0.0.0.0:80 -t /public/public
  4. volumes:
  5. - .:/public/
  6. links:
  7. - wordpress_db:mysql
  8. ports:
  9. - 8080:80
  10.  
  11. wordpress_db:
  12. image: mariadb
  13. environment:
  14. MYSQL_ROOT_PASSWORD: root
  15.  
  16. phpmyadmin:
  17. image: corbinu/docker-phpmyadmin
  18. links:
  19. - wordpress_db:mysql
  20. ports:
  21. - 8181:80
  22. environment:
  23. MYSQL_USERNAME: root
  24. MYSQL_ROOT_PASSWORD: root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement