Advertisement
vsokoltsov

Untitled

Mar 27th, 2018
91
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'
  2.  
  3. services:
  4. db:
  5. container_name: database
  6. image: postgres:9.6.7
  7. environment:
  8. PGDATA: /var/lib/postgresql/data/db
  9. POSTGRES_DB: 'interview_manager'
  10. volumes:
  11. - pg_data:/var/lib/postgresql/data
  12. ports:
  13. - 5432:5432
  14. volumes:
  15. pg_data: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement