Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. version: '3'
  2. services:
  3. db:
  4. image: postgres
  5. volumes:
  6. - ./tmp/db:/var/lib/postgresql/data
  7. web:
  8. build: .
  9. command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
  10. volumes:
  11. - .:/app
  12. ports:
  13. - "3000:3000"
  14. depends_on:
  15. - db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement