Convert a Docker Compose application into a deployable UDS package using Docker Compose Bridge. The transformation consumes a fully-resolved Compose model and emits a Helm chart tailored for UDS, ready for zarf package create and zarf package deploy.
[!IMPORTANT] This is not a supported product pathway. It's an experimental transformation we're sharing to gather feedback. Please enagage with our team on the project discussions page with any questions or suggestions.

This walkthrough deploys UDS Core Slim Dev on k3d, then packages and deploys WordPress and MySQL from a Compose file.
# 1. Create a local k3d cluster with UDS Core Slim Dev
uds zarf package deploy oci://ghcr.io/defenseunicorns/dev/uds/checkpoints/k3d-core-slim-dev:1.11.1
# 2. Transform the Compose application into a UDS Package
cd examples/simple
docker compose bridge convert -t ghcr.io/defenseunicorns/compose-bridge-uds
# 3. Build and deploy the package
zarf package create out/ --flavor upstream
zarf package deploy zarf-package-wordpress-*.tar.zst
The transformation writes these artifacts to out/:
| Path | Purpose |
|---|---|
chart/ | Generated application Helm chart. |
docs/ | Generated package documentation, including a human-readable conversion.md report. |
values/ | Generated Helm values consumed during package deployment. |
conversion.json | Machine-readable conversion report for automation. |
zarf.yaml | Package metadata, components, images, variables, and documentation. |
[!TIP] Is Compose Bridge a good fit for your application? Use the Awesome Compose compatibility matrix as a practical benchmark. If your application depends on unsupported Compose features or needs deeper package customization, start with the UDS reference package and build the package directly.
x-uds extensions, secrets, and policy exemptions.examples/full/compose.yaml demonstrates the complete supported configuration.The end-to-end smoke test builds this repository as a Compose Bridge transformation, converts examples/simple/compose.yaml, creates and deploys the generated Zarf package on UDS Core Slim in k3d, and runs a Playwright journey through UDS SSO and WordPress installation.
With Docker Compose, k3d, and the UDS CLI installed, run:
uds run test-install
The task uses the standard uds-common package creation, deployment, Core Slim setup, and Keycloak test-user tasks before running the Playwright journey.
Go
96.8%
Python
1.9%
Convert a Docker Compose application into a deployable UDS package using Docker Compose Bridge. The transformation consumes a fully-resolved Compose model and emits a Helm chart tailored for UDS, ready for zarf package create and zarf package deploy.
[!IMPORTANT] This is not a supported product pathway. It's an experimental transformation we're sharing to gather feedback. Please enagage with our team on the project discussions page with any questions or suggestions.

This walkthrough deploys UDS Core Slim Dev on k3d, then packages and deploys WordPress and MySQL from a Compose file.
# 1. Create a local k3d cluster with UDS Core Slim Dev
uds zarf package deploy oci://ghcr.io/defenseunicorns/dev/uds/checkpoints/k3d-core-slim-dev:1.11.1
# 2. Transform the Compose application into a UDS Package
cd examples/simple
docker compose bridge convert -t ghcr.io/defenseunicorns/compose-bridge-uds
# 3. Build and deploy the package
zarf package create out/ --flavor upstream
zarf package deploy zarf-package-wordpress-*.tar.zst
The transformation writes these artifacts to out/:
| Path | Purpose |
|---|---|
chart/ | Generated application Helm chart. |
docs/ | Generated package documentation, including a human-readable conversion.md report. |
values/ | Generated Helm values consumed during package deployment. |
conversion.json | Machine-readable conversion report for automation. |
zarf.yaml | Package metadata, components, images, variables, and documentation. |
[!TIP] Is Compose Bridge a good fit for your application? Use the Awesome Compose compatibility matrix as a practical benchmark. If your application depends on unsupported Compose features or needs deeper package customization, start with the UDS reference package and build the package directly.
x-uds extensions, secrets, and policy exemptions.examples/full/compose.yaml demonstrates the complete supported configuration.The end-to-end smoke test builds this repository as a Compose Bridge transformation, converts examples/simple/compose.yaml, creates and deploys the generated Zarf package on UDS Core Slim in k3d, and runs a Playwright journey through UDS SSO and WordPress installation.
With Docker Compose, k3d, and the UDS CLI installed, run:
uds run test-install
The task uses the standard uds-common package creation, deployment, Core Slim setup, and Keycloak test-user tasks before running the Playwright journey.
Go
96.8%
Python
1.9%