Commit 9496c51
fix(nextflow): propagate DOCKER_API_VERSION to fix Docker client version mismatch
The Docker client bundled in nextflow/nextflow images reports API version 1.32,
but Docker Desktop >= 4.x requires a minimum of 1.44. This causes all Nextflow
runs to fail immediately with:
docker: Error response from daemon: client version 1.32 is too old.
Minimum supported API version is 1.44, please upgrade your client.
Fix by:
1. Setting DOCKER_API_VERSION=1.44 in the Nextflow container environment,
which the Docker client reads to override its reported version.
2. Writing a sapporo.config with `docker.envWhitelist = 'DOCKER_API_VERSION'`
so Nextflow propagates the variable into all child process containers.
The same fix was already applied to run_cwltool(), run_toil(), run_ep3(), and
run_streamflow() — this brings run_nextflow() in line with those.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent 6bb3735 commit 9496c51
1 file changed
Lines changed: 9 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
63 | 70 | | |
64 | 71 | | |
65 | 72 | | |
| 73 | + | |
66 | 74 | | |
67 | 75 | | |
68 | 76 | | |
69 | | - | |
| 77 | + | |
70 | 78 | | |
71 | 79 | | |
72 | 80 | | |
| |||
0 commit comments