Skip to content
This repository has been archived by the owner on Feb 2, 2018. It is now read-only.

Commit

Permalink
Merge pull request #16 from cooktheryan/container_fix
Browse files Browse the repository at this point in the history
This will allow for commissaire to be served at 0.0.0.0
  • Loading branch information
ashcrow committed Jan 28, 2016
2 parents 2b35255 + 46eb778 commit e852972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commissaire/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def main(): # pragma: no cover

app = create_app(ds)
try:
WSGIServer(('127.0.0.1', 8000), app).serve_forever()
WSGIServer(('0.0.0.0', 8000), app).serve_forever()
except KeyboardInterrupt:
pass

Expand Down

0 comments on commit e852972

Please sign in to comment.