Guest User

Untitled

a guest
Jul 20th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. version: '2'
  2. services:
  3. db:
  4. image: mdillon/postgis:9.4
  5. environment:
  6. - POSTGRES_DB=mytestapp_development
  7. - POSTGRES_USER=root
  8. - POSTGRES_PASSWORD=root
  9.  
  10. dbtest:
  11. image: mdillon/postgis:9.4
  12. environment:
  13. - POSTGRES_DB=mytestapp_test
  14. - POSTGRES_USER=root
  15. - POSTGRES_PASSWORD=root
  16.  
  17. web:
  18. depends_on:
  19. - db
  20. - dbtest
  21. build: .
  22. command: bin/rails s --port 3000 --binding 0.0.0.0
  23. volumes:
  24. - .:/app
Add Comment
Please, Sign In to add comment