I am trying to use docker-py to run docker exec. But, it's returning Killed(after about an hour).
>>> import docker
>>> client = docker.DockerClient(version = "auto", base_url = "")
>>> client.containers.get("container_name").exec_run("start")
Killed
Can't understand why this is happening? Any ideas? Thanks!