Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion server-runtime/xr_media_hub/transport/livekit/_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@

_CONTAINER_NAME = "xr-ai-livekit-server"

# Pinned LiveKit server image so builds are reproducible instead of tracking
# the floating ":latest" tag. Bump deliberately after validating a release.
_LIVEKIT_IMAGE = "livekit/livekit-server:v1.13.5"


class LiveKitDocker:
def __init__(self, cfg: LiveKitConnectorConfig) -> None:
Expand Down Expand Up @@ -95,7 +99,7 @@ async def start(self) -> None:
"--name", _CONTAINER_NAME,
"--network", "host",
"-v", f"{cfg_path}:/etc/livekit.yaml:ro",
"livekit/livekit-server:latest",
_LIVEKIT_IMAGE,
"--config", "/etc/livekit.yaml",
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.STDOUT,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration_livekit.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
pytestmark = [pytest.mark.asyncio, pytest.mark.gpu]


_LIVEKIT_IMAGE = "livekit/livekit-server:latest"
_LIVEKIT_IMAGE = _docker_mod._LIVEKIT_IMAGE
_PORT_OPEN_WAIT = 30.0 # matches _docker._READY_TIMEOUT
_PORT_CLOSE_WAIT = 10.0

Expand Down