Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spawner: listen on 0.0.0.0 #91

Merged
merged 1 commit into from
Aug 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions podmanclispawner/podmanspawner.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ class PodmanCLISpawner(Spawner):
Does not work on Windows.
"""

ip = Unicode(
"0.0.0.0", help="The IP address the single-user server should listen on"
).tag(config=True)

popen_kwargs = Dict(
help="""Extra keyword arguments to pass to Popen
when spawning single-user servers.
Expand Down
Loading