Skip to content

Commit

Permalink
Attempt to define ip to 0.0.0.0 to fix conn refused
Browse files Browse the repository at this point in the history
  • Loading branch information
dafeliton committed Feb 29, 2024
1 parent f82761c commit 753717a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/datascience-notebook/test/test_start_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def test_start_notebook(container, http_client, env, expected_server):
c = container.run(
tty=True,
environment=env,
command=["start-notebook.py"],
command=["start-notebook.py --ip=\"0.0.0.0\""],
)
resp = http_client.get("http://localhost:8888")
logs = c.logs(stdout=True).decode("utf-8")
Expand Down

0 comments on commit 753717a

Please sign in to comment.