Guest User

Untitled

a guest
Oct 6th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. www:
  2. image: jakubsacha/symfony-docker:php7-dev
  3. volumes:
  4. - ".:/var/www/html"
  5. ports:
  6. - "80:80"
  7. links:
  8. - db
  9. - redis
  10.  
  11. db:
  12. image: mysql:5.7
  13. ports:
  14. - 3306:3306
  15. environment:
  16. MYSQL_ROOT_PASSWORD: 'rootpass'
  17. MYSQL_DATABASE: 'myowndb'
  18. MYSQL_USER: 'myuser'
  19. MYSQL_PASSWORD: 'mypassword'
  20.  
  21. redis:
  22. image: redis:3.0.7-alpine
  23. ports:
  24. - 6379:6379
Add Comment
Please, Sign In to add comment