Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. db:
  5. container_name: db-postgres
  6. image: postgres:9.6.8-alpine
  7. ports:
  8. - 5432:5432
  9. environment:
  10. - 'POSTGRES_DB=postgres'
  11. - 'POSTGRES_USER=postgres'
  12. - 'POSTGRES_PASSWORD=postgres'
  13. volumes:
  14. - db:/var/lib/postgresql/data
  15.  
  16. volumes:
  17. db:
  18. driver: local
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement