Guest User

Untitled

a guest
Nov 8th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. version: '2'
  2. services :
  3. db:
  4. image: postgres:10-alpine
  5. ports:
  6. - "5432:5432"
  7. environment:
  8. POSTGRES_USER: postgres
  9. POSTGRES_PASSWORD: changeme
  10. POSTGRES_DB: tododb
  11. admin:
  12. image: adminer
  13. restart: always
  14. depends_on:
  15. - db
  16. ports:
  17. - 8080:8080
Add Comment
Please, Sign In to add comment