Advertisement
Guest User

Untitled

a guest
May 18th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. postgres-data:
  5. image: busybox
  6. volumes:
  7. - /var/lib/postgresql/data
  8. container_name: postgres-datastore
  9. postgres:
  10. build: postgres
  11. environment:
  12. POSTGRES_USER: postgres
  13. POSTGRES_PASSWORD:
  14. ports:
  15. - "5432:5432"
  16. container_name: postgres-db
  17. volumes_from:
  18. - postgres-data
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement