Does someone know if the dagster-docker DockerRunL...
# ask-community
d
Does someone know if the dagster-docker DockerRunLauncher is the same as Airflow
🤖 1
s
From the code and the example here: https://docs.dagster.io/_apidocs/libraries/dagster-docker#dagster_docker.docker_executor, I would say yes. (but I am new to dagster)
Copy code
@job(executor_def=docker_executor)
def docker_job():
    pass
d
Thanks 🙂 I will try it out. I am using the K8sRunLauncher but would just like to deploy a specific op in a separate container / pod
d
Hey Daniel - If you’re running in k8s I think the Ops section here will help: https://docs.dagster.io/_apidocs/libraries/dagster-k8s#ops
D 1
🌈 1
❤️ 1
d
@daniel This is exactly what I want, thank you! 🙂