Guest User

Untitled

a guest
Mar 26th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. version: '2'
  2. services:
  3. postgres:
  4. image: postgres
  5. environment:
  6. POSTGRES_PASSWORD: '...'
  7. POSTGRES_USER: '...'
  8. POSTGRES_DB: '...'
  9. web:
  10. build: .
  11. command: rails s -b '0.0.0.0' -p 4000
  12. ports:
  13. - "4000:4000"
  14. depends_on:
  15. - postgres
  16. environment:
  17. DATABASE_URL: postgres://<user>@postgres/<table>
Add Comment
Please, Sign In to add comment