Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. app:
  2. image: yappabe/woosh-app
  3. volumes:
  4. - .:/var/www/app
  5. - ../libs:/var/www/libs
  6. tty: true
  7.  
  8. php:
  9. image: yappabe/php
  10. expose:
  11. - 9000:9000
  12. volumes_from:
  13. - app
  14. links:
  15. - mysql
  16.  
  17. apache:
  18. image: yappabe/apache
  19. ports:
  20. - 80:80
  21. links:
  22. - php
  23. volumes_from:
  24. - app
  25.  
  26. mysql:
  27. image: yappabe/mysql
  28. ports:
  29. - 3306:3306
  30. environment:
  31. ON_CREATE_DB: database_name
  32.  
  33. mailcatcher:
  34. image: yappabe/mailcatcher
  35. ports:
  36. - 1025:1025
  37. - 1080:1080
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement