@@ -16,8 +16,9 @@ workflows:
16
16
build_without_publishing_job :
17
17
jobs :
18
18
- docker-publish/publish :
19
- image : vanessa /scif-go
19
+ image : scif /scif-go
20
20
dockerfile : docker/Dockerfile
21
+ registry : quay.io
21
22
deploy : false
22
23
tag : latest
23
24
filters :
@@ -29,12 +30,13 @@ workflows:
29
30
- run :
30
31
name : Preview Docker Tag for Build
31
32
command : |
32
- DOCKER_TAG=$(docker run vanessa /scif-go:latest version)
33
+ DOCKER_TAG=$(docker run quay.io/scif /scif-go:latest version)
33
34
echo "Version for Docker tag is ${DOCKER_TAG}"
34
35
echo "GitHub Commit is ${CIRCLE_SHA1}"
35
36
36
37
- docker-publish/publish :
37
- image : vanessa/scif-go
38
+ image : scif/scif-go
39
+ registry : quay.io
38
40
dockerfile : docker/Dockerfile.hello-world
39
41
deploy : false
40
42
tag : hello-world
@@ -47,15 +49,16 @@ workflows:
47
49
- run :
48
50
name : Preview Docker Tag for Build
49
51
command : |
50
- DOCKER_TAG=$(docker run vanessa /scif-go:hello-world version)
52
+ DOCKER_TAG=$(docker run quay.io/scif /scif-go:hello-world version)
51
53
echo "Version for Docker tag is hello-world-${DOCKER_TAG}"
52
54
echo "GitHub Commit is ${CIRCLE_SHA1}"
53
55
54
56
# This workflow will deploy images on merge to master only
55
57
docker_with_lifecycle :
56
58
jobs :
57
59
- docker-publish/publish :
58
- image : vanessa/scif-go
60
+ image : scif/scif-go
61
+ registry : quay.io
59
62
dockerfile : docker/Dockerfile
60
63
tag : latest
61
64
filters :
@@ -65,13 +68,14 @@ workflows:
65
68
- run :
66
69
name : Publish Docker Tag with SCIF Version
67
70
command : |
68
- DOCKER_TAG=$(docker run vanessa /scif-go:latest version)
71
+ DOCKER_TAG=$(docker run quay.io/scif /scif-go:latest version)
69
72
echo "Version for Docker tag is ${DOCKER_TAG}"
70
- docker tag vanessa /scif-go:latest vanessa /scif-go:${DOCKER_TAG}
71
- docker tag vanessa /scif-go:latest vanessa /scif-go:${CIRCLE_SHA1}
73
+ docker tag quay.io /scif/scif -go:latest quay.io/scif /scif-go:${DOCKER_TAG}
74
+ docker tag quay.io /scif/scif -go:latest quay.io/scif /scif-go:${CIRCLE_SHA1}
72
75
73
76
- docker-publish/publish :
74
- image : vanessa/scif-go
77
+ image : scif/scif-go
78
+ registry : quay.io
75
79
dockerfile : docker/Dockerfile.hello-world
76
80
tag : hello-world
77
81
filters :
@@ -81,10 +85,12 @@ workflows:
81
85
- run :
82
86
name : Publish Docker Tag with SCIF Version
83
87
command : |
84
- DOCKER_TAG=$(docker run vanessa /scif-go:hello-world version)
88
+ DOCKER_TAG=$(docker run quay.io/scif /scif-go:hello-world version)
85
89
echo "Version for Docker tag is hello-world-${DOCKER_TAG}"
86
- docker tag vanessa/scif-go:hello-world vanessa/scif-go:hello-world-${DOCKER_TAG}
87
- docker tag vanessa/scif-go:hello-world vanessa/scif-go:hello-world-${CIRCLE_SHA1}
90
+ docker tag quay.io/scif/scif-go:hello-world quay.io/scif/scif-go:hello-world-${DOCKER_TAG}
91
+ docker tag quay.io/scif/scif-go:hello-world quay.io/scif/scif-go:hello-world-${CIRCLE_SHA1}
92
+
93
+
88
94
jobs :
89
95
test :
90
96
docker :
0 commit comments