Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
58
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.  
  3. services:
  4. website:
  5. build: .
  6. command: >
  7. gunicorn -b 0.0.0.0:8000
  8. --access-logfile -
  9. --reload
  10. "helloapp.flaskapp:create_app()"
  11. environment:
  12. PYTHONUNBUFFERED: 'true'
  13. volumes:
  14. - '.:/helloapp'
  15. ports:
  16. - '8000:8000'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement