I want to write Docker containers management script in Python. However, since I use CoreOS, Python is not included as standard command. So, I am thinking of using Python Docker container (https://registry.hub.docker.com/_/python/) to execute my script. However, in that case the script will be executed in container's VM which doesn't have access to the host's Docker CLI.
Is there a way to use Python (or other programming languages not packaged in CoreOS), to manage host environment without installing it on the host machine?
PS, the script will do something like:
docker run/rm/stop <another container>;