V6.0.0 - GigaSPOT #5

Merged
clore merged 8 commits from gigaspot into main 2025-01-19 17:54:53 +00:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit 73cb1ca67e - Show all commits

View File

@ -13,7 +13,11 @@ def create_container(container_options, ip=None, docker_gpus=False, shm_size=64,
# Sanitize and validate input
container_options = sanitize_input(container_options)
command = ["docker", ("create" if paused else "run"), "--detach", "--tty"]
command = ["docker", ("create" if paused else "run")]
if not paused:
command.append("--detach")
command.append("--tty")
if "name" in container_options:
command.extend(["--name", container_options["name"]])