From f9840cf949727e3523b1b4da9d2a53367ce046cd Mon Sep 17 00:00:00 2001 From: subwaystation Date: Wed, 21 Jun 2023 16:02:07 +0200 Subject: [PATCH] fix registry entries --- nextflow.config | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/nextflow.config b/nextflow.config index 35dff96..4057873 100644 --- a/nextflow.config +++ b/nextflow.config @@ -148,7 +148,6 @@ profiles { } docker { docker.enabled = true - docker.registry = 'quay.io' docker.userEmulation = true conda.enabled = false singularity.enabled = false @@ -172,7 +171,6 @@ profiles { } podman { podman.enabled = true - podman.registry = 'quay.io' conda.enabled = false docker.enabled = false singularity.enabled = false @@ -231,6 +229,13 @@ env { // Capture exit codes from upstream processes when piping process.shell = ['/bin/bash', '-euo', 'pipefail'] +// Set default registry for Docker, Singularity and Podman independent of -profile +// Will not be used unless Docker, Singularity and Podman are enabled +// Set to your registry if you have a mirror of containers +docker.registry = 'quay.io' +podman.registry = 'quay.io' +singularity.registry = 'quay.io' + def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss') timeline { enabled = true