Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. services:
  2. nfegw-elasticsearch:
  3. container_name: nfegw-elasticsearch
  4. image: elasticsearch:2.3
  5. network_mode: bridge
  6. nfegw-mailhog:
  7. container_name: nfegw-mailhog
  8. image: phpdockerio/mailhog:latest
  9. network_mode: bridge
  10. ports:
  11. - 30001:8025
  12. nfegw-memcached:
  13. container_name: nfegw-memcached
  14. image: phpdockerio/memcached:latest
  15. network_mode: bridge
  16. nfegw-mongodb:
  17. container_name: nfegw-mongodb
  18. image: mongo:3.2
  19. network_mode: bridge
  20. volumes:
  21. - mongo-data:/data/db:rw
  22. nfegw-mysql:
  23. container_name: nfegw-mysql
  24. environment:
  25. MYSQL_DATABASE: nfegw
  26. MYSQL_PASSWORD: nf3gw
  27. MYSQL_ROOT_PASSWORD: nf3gw
  28. MYSQL_USER: nfegw
  29. image: mysql:5.7
  30. network_mode: bridge
  31. nfegw-php-fpm:
  32. build:
  33. context: /home/jeff/Projetos/nfe-gateway
  34. dockerfile: php-fpm/Dockerfile
  35. container_name: nfegw-php-fpm
  36. links:
  37. - nfegw-memcached
  38. - nfegw-mailhog
  39. - nfegw-mysql
  40. - nfegw-redis
  41. - nfegw-elasticsearch
  42. network_mode: bridge
  43. volumes:
  44. - /home/jeff/Projetos/nfe-gateway/www/nfegw:/var/www/nfegw:rw
  45. - /home/jeff/Projetos/nfe-gateway/php-fpm/php-ini-overrides.ini:/etc/php/7.0/fpm/conf.d/99-overrides.ini:rw
  46. nfegw-redis:
  47. container_name: nfegw-redis
  48. image: phpdockerio/redis:latest
  49. network_mode: bridge
  50. nfegw-webserver:
  51. container_name: nfegw-webserver
  52. image: phpdockerio/nginx:latest
  53. links:
  54. - nfegw-php-fpm
  55. network_mode: bridge
  56. ports:
  57. - 80:80
  58. volumes:
  59. - /home/jeff/Projetos/nfe-gateway/www/nfegw:/var/www/nfegw:rw
  60. - /home/jeff/Projetos/nfe-gateway/nginx/nginx.conf:/etc/nginx/conf.d/default.conf:rw
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement