Guest User

Untitled

a guest
Dec 15th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 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. volumes:
  10. - .:/myapp
  11. ports:
  12. - "3000:3000"
  13. depends_on:
  14. - db
Add Comment
Please, Sign In to add comment