Advertisement
Guest User

Untitled

a guest
Jan 12th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. app:
  2. image: thomasredstone/php7fpm:1.0.7
  3. links:
  4. - redis:redis
  5. - mysql:mysql
  6. ports:
  7. - 9000:9000
  8. volumes:
  9. - ./:/var/www/app/
  10. mysql:
  11. environment:
  12. MYSQL_DATABASE: my_db
  13. MYSQL_ROOT_PASSWORD: password
  14. image: mysql
  15. ports:
  16. - 3306:3306
  17. volumes:
  18. - ./:/var/www/app
  19. redis:
  20. image: thomasredstone/redis
  21. ports:
  22. - 6379:6379
  23. volumes:
  24. - ./:/var/www/app
  25. web:
  26. image: thomasredstone/nginx:1.0.3
  27. links:
  28. - app:app
  29. ports:
  30. - 80:80
  31. volumes:
  32. - ./public/:/var/www/app/public/
  33. - ./management/:/var/www/app/management/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement