Skip to content

Commit

Permalink
Merge pull request #4465 from broadinstitute/update-vlm-port
Browse files Browse the repository at this point in the history
update VLM to non-conflicting port
  • Loading branch information
hanars authored Oct 31, 2024
2 parents c923ea1 + fb3b212 commit bea7763
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vlm/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def run():
web.run_app(
app,
host='0.0.0.0', # nosec
port=6000,
port=7000,
access_log_format='%a "%r" %s %Tfs',
)

Expand Down
2 changes: 1 addition & 1 deletion vlm/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ WORKDIR /vlm
COPY vlm/ .

WORKDIR /
EXPOSE 6000
EXPOSE 7000
CMD ["python3", "-m", "vlm"]

0 comments on commit bea7763

Please sign in to comment.