Guest User

Untitled

a guest
Mar 3rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. code:
  5. image: tianon/true
  6. volumes:
  7. - ./:/app
  8. web:
  9. image: michaelbunch/nginx:1.13
  10. volumes_from:
  11. - code
  12. links:
  13. - app
  14. ports:
  15. - "8000:80"
  16. app:
  17. image: michaelbunch/php:fpm-7.1
  18. volumes_from:
  19. - code
  20. ports:
  21. - "9000"
  22. links:
  23. - db
  24. - redis
  25. db:
  26. image: mysql:5.7
  27. environment:
  28. MYSQL_DATABASE: webapp
  29. MYSQL_USER: webapp
  30. MYSQL_PASSWORD: secret
  31. MYSQL_ROOT_PASSWORD: secret
  32. ports:
  33. - "3306"
  34. redis:
  35. image: redis:4.0-alpine
  36. ports:
  37. - "6379"
Add Comment
Please, Sign In to add comment