I have read the "Getting Started" introduction on Docker's website, but I still have one question I could not find an answer to:
Is it possible to set up a Docker container which can create other containers (real-time) ? For instance, can I create a container called "ContainerDeployer" which can 1. Download existing containers from Docker's official, public Docker Hub repository and deploy them? 2. Create a new image based on user input and then run a container from the newly created image?
Thanks in advance.