Merge pull request #2635 from kislyuk/patch-5
Batch: explicitly specify json-file log driver
This commit is contained in:
commit
d86852bfa0
@ -384,8 +384,9 @@ class Job(threading.Thread, BaseModel):
|
|||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
self.job_state = "STARTING"
|
self.job_state = "STARTING"
|
||||||
|
log_config = docker.types.LogConfig(type=docker.types.LogConfig.types.JSON)
|
||||||
container = self.docker_client.containers.run(
|
container = self.docker_client.containers.run(
|
||||||
image, cmd, detach=True, name=name
|
image, cmd, detach=True, name=name, log_config=log_config
|
||||||
)
|
)
|
||||||
self.job_state = "RUNNING"
|
self.job_state = "RUNNING"
|
||||||
self.job_started_at = datetime.datetime.now()
|
self.job_started_at = datetime.datetime.now()
|
||||||
|
Loading…
Reference in New Issue
Block a user