Guest User

Untitled

a guest
Dec 21st, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. version: '2'
  2. services:
  3. web:
  4. build: .
  5. command: bundle exec rails s -p 3000 -b '0.0.0.0'
  6. volumes:
  7. - .:/myapp
  8. ports:
  9. - "3000:3000"
  10. depends_on:
  11. - redis
  12. - db
  13. env_file:
  14. - myapp.env
  15. redis:
  16. image: redis
  17. sidekiq:
  18. build: .
  19. command: bundle exec sidekiq
  20. depends_on:
  21. - redis
  22. env_file:
  23. - myapp.env
  24. db:
  25. image: mysql
  26. ports:
  27. - "3306:3306"
  28. environment:
  29. MYSQL_ROOT_PASSWORD: xxx
  30. MYSQL_USER: xxx
Add Comment
Please, Sign In to add comment