Skip to content

Commit

Permalink
disable docker.runOptions -u and -g to workaround container issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fbdtemme committed Jan 11, 2024
1 parent 99a2d80 commit e196431
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ profiles {
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
docker.runOptions = '-u $(id -u):$(id -g)'
// Disabled this to deal with libpysal temporary directory issue
// docker.runOptions = '-u $(id -u):$(id -g)'
}
arm {
docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64'
Expand Down Expand Up @@ -271,7 +272,7 @@ manifest {
description = """Pipeline for analysis of Molecular Pixelation assays"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '1.1.0dev'
version = '1.1.0dev'
// TODO: Use zenodo DOI once available
doi = '10.1101/2023.06.05.543770'
}
Expand Down

0 comments on commit e196431

Please sign in to comment.