Advertisement
Guest User

Untitled

a guest
Sep 14th, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. app:
  5. build:
  6. context: ./docker/app
  7. ports:
  8. - 8080:80
  9. depends_on:
  10. - database
  11.  
  12. database:
  13. image: postgres:9
  14. environments:
  15. - POSTGRES_USER=meeting
  16. - POSTGRES_PASSWORD=a-strong-password
  17. - POSTGRES_DB=meeting
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement