Advertisement
Guest User

Untitled

a guest
Jun 27th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. # Use postgres/example user/password credentials
  2. version: '3.1'
  3.  
  4. services:
  5.  
  6. postgres:
  7. image: 'postgres:9.6-alpine'
  8. environment:
  9. POSTGRES_USER: 'aswidrak'
  10. POSTGRES_PASSWORD: 'password'
  11. ports:
  12. - '5432:5432'
  13. volumes:
  14. - 'postgres:/var/lib/postgresql/data'
  15.  
  16. volumes:
  17. postgres:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement