Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. version: "3"
  2. services:
  3. db:
  4. image: "postgres:11"
  5. container_name: "my_postgres"
  6. ports:
  7. - "5432:5432"
  8. environment:
  9. POSTGRES_USER: postgres
  10. POSTGRES_PASSWORD: dbpw
  11. volumes:
  12. - my_dbdata:/var/lib/postgresql/data
  13. volumes:
  14. my_dbdata: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement