--- id: dagster-docker version: "0.29.18" license: Apache-2.0 license_treatment: permissive maintenance: active --- # dagster-docker — A Dagster integration for docker License: permissive · Maintenance: active · Downloads: 2.7M/mo ## What it is and what it does dagster-docker is a Dagster integration that allows you to run data assets and pipelines inside Docker containers as part of your Dagster orchestration. It bridges Dagster's declarative asset model with Docker's containerization, letting you define assets in Python and have them execute in isolated container environments managed by Dagster. The package depends on dagster (the core orchestration framework), docker (the Python Docker client), and docker-image-py. It is designed for teams that want to containerize their data workflows while keeping them coordinated through Dagster's central orchestration, lineage tracking, and observability layer. It's part of Dagster's broader ecosystem of integrations for modern data infrastructure. Use it for: - Run Dagster assets in Docker containers to isolate dependencies and ensure reproducible execution across environments. - Orchestrate multi-container data pipelines where different assets require different runtime environments or system packages. - Deploy data workflows to Kubernetes or other container platforms by containerizing Dagster job execution. - Integrate legacy or third-party tools that are only available as Docker images into a Dagster-orchestrated data platform. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Integrates Dagster data orchestration with Docker, enabling containerized execution of data pipelines and assets within Dagster's orchestration framework. Yes. This is a straightforward, actively maintained integration for a popular orchestration framework. Install it if you need to run Dagster assets in Docker containers. The low install friction, permissive license, and active maintenance make it a safe choice. No known security vulnerabilities. ## Install pip install dagster-docker uv add dagster-docker poetry add dagster-docker ## Installing dagster-docker Before you install: Low friction installation with three runtime dependencies. Actively maintained with a release on 2026-08-14 and 15996 GitHub stars, indicating stable ongoing development. License in practice: Apache-2.0 permissive license allows commercial use, modification, and distribution with minimal restrictions. Quickstart: pip install dagster-docker import dagster as dg from dagster_docker import DockerExecutor @dg.asset def my_asset(): return "data" defs = dg.Definitions( assets=[my_asset], executor=DockerExecutor() ) Requires Docker to be installed and running on the system where Dagster executes jobs; Python 3.10 or later. Verify before relying: - Specific Docker image requirements or registry configuration options beyond the runtime dependencies listed. - Whether container networking, volume mounting, or resource limits are configurable through this integration. - Performance characteristics or overhead of containerized execution compared to in-process execution. ## Package facts - License: Apache-2.0 (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 2.7M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags dagster docker integration, containerized data pipelines, orchestrate docker containers, dagster container execution, docker asset orchestration, containerized workflow scheduling, orchestration, containerization, data-pipelines [View on SkillFed](https://skillfed.io/packages/dagster-docker) · [View on PyPI](https://pypi.org/project/dagster-docker/)