Server podman update.

This commit is contained in:
Michael Woods
2025-02-15 21:51:04 -05:00
parent e7c5d55a46
commit 0db6855ba6

View File

@@ -235,7 +235,7 @@ class PodmanOrchestrator(Orchestrator):
command=podman_run_command, command=podman_run_command,
environment=container_env, user="root") environment=container_env, user="root")
con.start() con.start()
logging.debug(f"Container started for {username}") logging.debug(f"Container started for {username} from image {self.opts.image_name}")
started_at = datetime.datetime.now() started_at = datetime.datetime.now()
logging.debug(f"Container state: \n{con.inspect()['State']}") logging.debug(f"Container state: \n{con.inspect()['State']}")
while con.inspect()['State']['Status'] not in ['exited', 'running']: while con.inspect()['State']['Status'] not in ['exited', 'running']: