Skip to content
This repository was archived by the owner on Feb 5, 2026. It is now read-only.
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
7 changes: 7 additions & 0 deletions taskweaver/ces/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,13 @@ def start_session(
f"{new_port_start + 3}/tcp": None,
f"{new_port_start + 4}/tcp": None,
},
# Block access to host's localhost via "magic domains" in Docker Desktop,
# Podman, and Containerd on Lima (macOS/Windows) to prevent container escape
extra_hosts={
"host.docker.internal": "0.0.0.0",
"host.containers.internal": "0.0.0.0",
"host.lima.internal": "0.0.0.0",
},
)

tick = 0
Expand Down