Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. version: '2'
  2. services:
  3. db:
  4. image: mysql:5.7
  5. restart: always
  6. environment:
  7. MYSQL_USER: root
  8. MYSQL_PASSWORD: ''
  9. MYSQL_DATABASE: 'noteapp_development'
  10. ports:
  11. - "3307:3306"
  12. app:
  13. build: .
  14. command: bundle exec rails s -p 3000 -b '0.0.0.0'
  15. volumes:
  16. - ".:/noteapp"
  17. ports:
  18. - "3001:3000"
  19. depends_on:
  20. - db
  21. links:
  22. - db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement