Skip to content

Commit 6a7f35f

Browse files
committed
add registry to dockerPull references
1 parent c014c36 commit 6a7f35f

33 files changed

+40
-37
lines changed

tests/echo-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cwl:requirements:
22
- class: DockerRequirement
3-
dockerPull: debian
3+
dockerPull: docker.io/debian
44

55
inp: "Howdy!"

tests/iwdr_bad_expr.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cwlVersion: v1.0
44

55
requirements:
66
DockerRequirement:
7-
dockerPull: debian:stable-slim
7+
dockerPull: docker.io/debian:stable-slim
88
InlineJavascriptRequirement: {}
99
InitialWorkDirRequirement:
1010
listing: |

tests/iwdr_dir_literal_real_file.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cwlVersion: v1.0
44

55
requirements:
66
DockerRequirement:
7-
dockerPull: debian:stable-slim
7+
dockerPull: docker.io/debian:stable-slim
88
InlineJavascriptRequirement: {}
99
InitialWorkDirRequirement:
1010
listing: |

tests/non_portable.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class: CommandLineTool
44

55
requirements:
66
DockerRequirement:
7-
dockerPull: debian
7+
dockerPull: docker.io/debian
88
InitialWorkDirRequirement:
99
listing:
1010
- class: File

tests/non_portable2.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class: CommandLineTool
44

55
hints:
66
DockerRequirement:
7-
dockerPull: debian
7+
dockerPull: docker.io/debian
88
dockerOutputDirectory: /var/spool/cwl
99
InitialWorkDirRequirement:
1010
listing:

tests/portable.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class: CommandLineTool
44

55
requirements:
66
DockerRequirement:
7-
dockerPull: debian
7+
dockerPull: docker.io/debian
88
dockerOutputDirectory: /var/spool/cwl
99
InitialWorkDirRequirement:
1010
listing:

tests/sing_pullfolder_test.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class: CommandLineTool
44

55
requirements:
66
DockerRequirement:
7-
dockerPull: debian
7+
dockerPull: docker.io/debian
88

99
inputs:
1010
message: string

tests/test_tmpdir.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ def test_docker_commandLineTool_job_tmpdir_prefix(tmp_path: Path) -> None:
4242
"inputs": [],
4343
"outputs": [],
4444
"requirements": [
45-
{"class": "DockerRequirement", "dockerPull": "debian:stable"}
45+
{
46+
"class": "DockerRequirement",
47+
"dockerPull": "docker.io/debian:stable",
48+
}
4649
],
4750
}
4851
),

tests/wf/910.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ requirements:
1818

1919
hints:
2020
- class: DockerRequirement
21-
dockerPull: ubuntu
21+
dockerPull: docker.io/ubuntu
2222

2323
inputs: []
2424

tests/wf/arguments.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class: CommandLineTool
55
label: Example trivial wrapper for Java 9 compiler
66
hints:
77
DockerRequirement:
8-
dockerPull: openjdk:9.0.1-11-slim
8+
dockerPull: docker.io/openjdk:9.0.1-11-slim
99
baseCommand: javac
1010
arguments: ["-d", $(runtime.outdir)]
1111
inputs:

tests/wf/cat-tool.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cwlVersion: v1.0
55

66
hints:
77
DockerRequirement:
8-
dockerPull: frolvlad/alpine-bash
8+
dockerPull: docker.io/frolvlad/alpine-bash
99

1010
inputs:
1111
file1: File

tests/wf/directory.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ doc: >
88

99
hints:
1010
- class: DockerRequirement
11-
dockerPull: debian:8
11+
dockerPull: docker.io/debian:8
1212

1313
inputs:
1414
dir:

tests/wf/expect_packed.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"hints": [
77
{
88
"class": "DockerRequirement",
9-
"dockerPull": "debian:8"
9+
"dockerPull": "docker.io/debian:8"
1010
}
1111
],
1212
"inputs": [

tests/wf/expect_revsort_datetime_packed.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"hints": [
77
{
88
"class": "DockerRequirement",
9-
"dockerPull": "debian:8"
9+
"dockerPull": "docker.io/debian:8"
1010
}
1111
],
1212
"inputs": [

tests/wf/expect_trick_packed.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"hints": [
6363
{
6464
"class": "DockerRequirement",
65-
"dockerPull": "debian:8"
65+
"dockerPull": "docker.io/debian:8"
6666
}
6767
],
6868
"inputs": [

tests/wf/iwdr_permutations.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requirements:
66
envDef:
77
LC_ALL: C
88
DockerRequirement:
9-
dockerPull: debian
9+
dockerPull: docker.io/debian
1010
InitialWorkDirRequirement:
1111
listing:
1212
- entry: $(inputs.first)

tests/wf/literalfile.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ inputs:
66
outputs: []
77
requirements:
88
DockerRequirement:
9-
dockerPull: debian:9
9+
dockerPull: docker.io/debian:9
1010
arguments: [cat, $(inputs.a1)]

tests/wf/networkaccess-fail.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ class: CommandLineTool
33
cwlVersion: v1.0
44
requirements:
55
DockerRequirement:
6-
dockerPull: python:3
6+
dockerPull: docker.io/python:3
77
NetworkAccess:
88
networkAccess: true
99
inputs: []

tests/wf/networkaccess.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $namespaces:
55
cwltool: "http://commonwl.org/cwltool#"
66
requirements:
77
DockerRequirement:
8-
dockerPull: python:3
8+
dockerPull: docker.io/python:3
99
cwltool:NetworkAccess:
1010
networkAccess: true
1111
inputs: []

tests/wf/operation/abstract-cosifer.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cwlVersion: v1.2
33

44
requirements:
55
DockerRequirement:
6-
dockerPull: 'tsenit/cosifer:b4d5af45d2fc54b6bff2a9153a8e9054e560302e'
6+
dockerPull: 'docker.io/tsenit/cosifer:b4d5af45d2fc54b6bff2a9153a8e9054e560302e'
77

88
inputs:
99
data_matrix:

tests/wf/operation/expect_operation-single_packed.cwl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"class": "Operation",
55
"requirements": [
66
{
7-
"dockerPull": "tsenit/cosifer:b4d5af45d2fc54b6bff2a9153a8e9054e560302e",
7+
"dockerPull": "docker.io/tsenit/cosifer:b4d5af45d2fc54b6bff2a9153a8e9054e560302e",
88
"class": "DockerRequirement"
99
}
1010
],
@@ -151,4 +151,4 @@
151151
}
152152
],
153153
"cwlVersion": "v1.2"
154-
}
154+
}

tests/wf/packed-with-loadlisting.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"class": "CommandLineTool",
4747
"requirements": [
4848
{
49-
"dockerPull": "debian:stretch-slim",
49+
"dockerPull": "docker.io/debian:stretch-slim",
5050
"class": "DockerRequirement",
5151
},
5252
{

tests/wf/paramref_arguments_self.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ steps:
2424
class: CommandLineTool
2525
hints:
2626
DockerRequirement:
27-
dockerPull: everpeace/curl-jq
27+
dockerPull: docker.io/everpeace/curl-jq
2828
inputs:
2929
self:
3030
type: File

tests/wf/revsort.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cwlVersion: v1.0
1111
# in which the command line tools will execute.
1212
hints:
1313
- class: DockerRequirement
14-
dockerPull: debian:8
14+
dockerPull: docker.io/debian:8
1515

1616

1717
# The inputs array defines the structure of the input object that describes

tests/wf/revsort_datetime.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cwlVersion: v1.0
1111
# in which the command line tools will execute.
1212
hints:
1313
- class: DockerRequirement
14-
dockerPull: debian:8
14+
dockerPull: docker.io/debian:8
1515

1616

1717
# The inputs array defines the structure of the input object that describes

tests/wf/schemadef-bug-1473.cwl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
"doc": "Runs the BCL Convert application off standard architechture\n",
152152
"hints": [
153153
{
154-
"dockerPull": "umccr/bcl-convert:3.7.5",
154+
"dockerPull": "docker.io/umccr/bcl-convert:3.7.5",
155155
"class": "DockerRequirement"
156156
},
157157
{
@@ -400,7 +400,7 @@
400400
"doc": "Use before running bcl-convert workflow to ensure that the bclConvert workflow can run in parallel.\nSamples will be split into separate samplesheets based on their cycles specification\n",
401401
"hints": [
402402
{
403-
"dockerPull": "umccr/alpine_pandas:latest-cwl",
403+
"dockerPull": "docker.io/umccr/alpine_pandas:latest-cwl",
404404
"class": "DockerRequirement"
405405
},
406406
{
@@ -700,7 +700,7 @@
700700
"doc": "Documentation for custom-create-dummy-file v1.0.0\n",
701701
"hints": [
702702
{
703-
"dockerPull": "alpine:latest",
703+
"dockerPull": "docker.io/alpine:latest",
704704
"class": "DockerRequirement"
705705
},
706706
{
@@ -762,7 +762,7 @@
762762
"doc": "Producing QC report using interop matrix\n",
763763
"hints": [
764764
{
765-
"dockerPull": "umccr/multiqc_dragen:1.2.1",
765+
"dockerPull": "docker.io/umccr/multiqc_dragen:1.2.1",
766766
"class": "DockerRequirement"
767767
},
768768
{

tests/wf/secret_wf.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ hints:
77
"cwltool:Secrets":
88
secrets: [pw]
99
DockerRequirement:
10-
dockerPull: debian:8
10+
dockerPull: docker.io/debian:8
1111
inputs:
1212
pw: string
1313
outputs:

tests/wf/touch_tool.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class: CommandLineTool
55
baseCommand: touch
66
requirements:
77
DockerRequirement:
8-
dockerPull: alpine
8+
dockerPull: docker.io/alpine
99
inputs:
1010
message:
1111
type: string

tests/wf/trick_revsort.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cwlVersion: v1.0
1111
# in which the command line tools will execute.
1212
hints:
1313
- class: DockerRequirement
14-
dockerPull: debian:8
14+
dockerPull: docker.io/debian:8
1515

1616

1717
# The inputs array defines the structure of the input object that describes

tests/wf/updateval.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ requirements:
88
writable: true
99
hints:
1010
DockerRequirement:
11-
dockerPull: "python:2.7.15-alpine3.7"
11+
dockerPull: "docker.io/python:2.7.15-alpine3.7"
1212
inputs:
1313
r: File
1414
script:

tests/wf/updateval_inplace.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ requirements:
1212
inplaceUpdate: true
1313
hints:
1414
DockerRequirement:
15-
dockerPull: "python:2.7.15-alpine3.7"
15+
dockerPull: "docker.io/python:2.7.15-alpine3.7"
1616
inputs:
1717
r: File
1818
script:

tests/wf/workreuse-fail.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ class: CommandLineTool
33
cwlVersion: v1.0
44
requirements:
55
DockerRequirement:
6-
dockerPull: python:3
6+
dockerPull: docker.io/python:3
77
WorkReuse:
88
enableReuse: false
99
inputs: []

tests/wf/workreuse.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $namespaces:
55
cwltool: "http://commonwl.org/cwltool#"
66
requirements:
77
DockerRequirement:
8-
dockerPull: python:3
8+
dockerPull: docker.io/python:3
99
cwltool:WorkReuse:
1010
enableReuse: false
1111
inputs: []

0 commit comments

Comments
 (0)