Skip to content

Commit

Permalink
feat: add container_configs argument for docker session
Browse files Browse the repository at this point in the history
  • Loading branch information
vndee committed Nov 18, 2024
1 parent 272c262 commit 71f29ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llm_sandbox/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def open(self):
detach=True,
tty=True,
mounts=self.mounts,
**self.container_configs,
**self.container_configs if self.container_configs else {},
)

def close(self):
Expand Down

0 comments on commit 71f29ab

Please sign in to comment.