You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to run epi2me on an HPC but keep running into nextflow trying to run through docker instead of apptainer. I added apptainer to the profile list (see below) but it will not run
profiles {
// the "standard" profile is used implicitly by nextflow
// if no other profile is given on the CLI
standard {
docker {
enabled = true
// this ensures the container is run as the host user and group, but
// also adds the host user to the within-container group
runOptions = "--user $(id -u):$(id -g) --group-add 100"
}
}
// using singularity instead of docker
singularity {
singularity {
enabled = true
autoMounts = true
}
}
// using Apptainer instead of Docker
apptainer {
apptainer {
enabled = true
autoMounts = true
container = "/path to /nextflow_latest.sif"
}
}
The text was updated successfully, but these errors were encountered:
I am trying to run epi2me on an HPC but keep running into nextflow trying to run through docker instead of apptainer. I added apptainer to the profile list (see below) but it will not run$(id -u):$ (id -g) --group-add 100"
profiles {
// the "standard" profile is used implicitly by nextflow
// if no other profile is given on the CLI
standard {
docker {
enabled = true
// this ensures the container is run as the host user and group, but
// also adds the host user to the within-container group
runOptions = "--user
}
}
// using singularity instead of docker
singularity {
singularity {
enabled = true
autoMounts = true
}
}
// using Apptainer instead of Docker
apptainer {
apptainer {
enabled = true
autoMounts = true
container = "/path to /nextflow_latest.sif"
}
}
The text was updated successfully, but these errors were encountered: