Skip to content

Commit

Permalink
Update default port (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
kratman authored Jun 11, 2024
1 parent 1f5a848 commit e32e7de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ionwizard/container_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def run_image(product, key, version):
"--name",
product.replace("/", ""),
"-p",
"8888:8888",
"4040:8888",
"-e",
f"IONWORKS_LICENSE_KEY={key}",
f"{product}:{version}",
Expand Down Expand Up @@ -95,7 +95,7 @@ def install_from(config):

@staticmethod
def open_browser():
webbrowser.open_new(r"http://localhost:8888/tree")
webbrowser.open_new(r"http://localhost:4040/tree")

@staticmethod
def make_container(config):
Expand Down

0 comments on commit e32e7de

Please sign in to comment.