Guest User

Untitled

a guest
Nov 7th, 2018
149
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.1"
  2.  
  3. services:
  4. db:
  5. image: postgres:latest
  6. environment:
  7. - POSTGRES_USER=postgres
  8. - POSTGRES_PASSWORD=admin
  9. - POSTGRES_DB=postgres
  10. ports:
  11. - 5432:5432
  12. volumes:
  13. - postgres_volume:/var/lib/postgresql/data
  14.  
  15. volumes:
  16. postgres_volume:
Add Comment
Please, Sign In to add comment