Advertisement
Guest User

Untitled

a guest
Sep 28th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. pgwoozies:
  5. image: mdillon/postgis:9.6
  6. ports:
  7. - "5432"
  8. environment:
  9. - POSTGRES_USER=woozies
  10. - POSTGRES_DB=woozies
  11. - POSTGRES_PASSWORD=nopass
  12.  
  13. woozies:
  14. build: .
  15. ports:
  16. - "8000:8000"
  17. environment:
  18. - DEVELOPMENT=yes
  19. - DEBUG=yes
  20. - ALLOWED_HOSTS=*
  21. - DB_NAME=woozies
  22. - DB_USER=woozies
  23. - DB_PASSWORD=nopass
  24. - DB_HOST=pgwoozies
  25. - PYTHONUNBUFFERED=False
  26. - GOOGLE_API_KEY=
  27. volumes:
  28. - ".:/usr/src/app/"
  29. command: sh ./startup.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement