Hi,
I am looking for best practices around running a Docker container as a task within my DAG.
I am aware that there is a DockerOperator in the airflow codebase but using that would mean that the container would be executed within the airflow worker.
I am worried mainly about the container using resources from the worker.
Is it better to create an operator or use a Python or Bash Operator to spin up a gce instance with the container ? Is that the recommended way ?
Francesco