Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Cloud Composer - Deploying Docker Image

Definitely missing something, and could use some quick assistance!

Simply, how do you deploy a Docker image to an Airflow DAG for running jobs? Does anyone have a simple example of deploying a Google container and running it via Airflow/Composer?

like image 247
curious_kills Avatar asked Apr 30 '26 17:04

curious_kills


1 Answers

You can use the Docker Operator, included in the core Airflow repository.

If pulling an image from a private registry, you'll need to set a connection config with the relevant credentials and pass it to the docker_conn_id param.

like image 171
Ben Gregory Avatar answered May 02 '26 07:05

Ben Gregory