We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6589265 + 242a3e6 commit 55593a4Copy full SHA for 55593a4
changelog.md
@@ -6,6 +6,7 @@
6
7
- Added removal of duplicate IDs from `reads_download` component input.
8
- Added seed parameter to `downsample_fastq` component.
9
+- Added default docker option to avoid docker permission errors.
10
11
### Bug fixes
12
flowcraft/nextflow.config
@@ -32,6 +32,13 @@ process {
32
container = "flowcraft/flowcraft_base:1.0.0-1"
33
}
34
35
+docker {
36
+ // Added default docker option to avoid docker permission errors. See issue
37
+ // #142
38
+ runOptions = "-u \$(id -u):\$(id -g)"
39
+}
40
+
41
42
executor {
43
$local {
44
cpus = 4
0 commit comments