Skip to content

Commit

Permalink
Merge pull request #1942 from ggabernet/dev
Browse files Browse the repository at this point in the history
Add docker_m1 profile
  • Loading branch information
mirpedrol authored Nov 18, 2022
2 parents bacb003 + addf973 commit eb19d3f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Add codespaces template ([#1957](https://github.com/nf-core/tools/pull/1957))
- Check that the workflow name provided with a template doesn't contain dashes ([#1822](https://github.com/nf-core/tools/pull/1822))
- `nextflow run <pipeline> --version` will now print the workflow version from the manifest and exit ([#1951](https://github.com/nf-core/tools/pull/1951))
- Add profile for running `docker` with the ARM chips (including Apple silicon).

### Linting

Expand Down
8 changes: 8 additions & 0 deletions nf_core/pipeline-template/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,14 @@ profiles {
shifter.enabled = false
charliecloud.enabled = false
}
docker_arm {
docker.enabled = true
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64'
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
Expand Down

0 comments on commit eb19d3f

Please sign in to comment.