Docker's Python SDK "container.start()" exit immediately

I want to create a docker container via the docker’s Python SDK. The bash equivalence (which works on the cli) of what I am trying to achieve is as follows. (the image entry point is /bin/bash) docker container create –name <container_name>-i –mount source=<src>,target=/project_data <image_name> docker container start -i <container_name> While this works on the Cli,… Read More Docker's Python SDK "container.start()" exit immediately