Skip to content

Commit 91138ef

Browse files
authored
Merge pull request #160 from overture-stack/rc/1.2.0
Rc/1.2.0 upgrade dms ui to 1.0.3
2 parents 5956c5b + 20b6e32 commit 91138ef

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

Jenkinsfile.groovy

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ spec:
4848
image: docker:18.06-dind
4949
securityContext:
5050
privileged: true
51+
runAsUser: 0
5152
volumeMounts:
5253
- name: docker-graph-storage
5354
mountPath: /var/lib/docker
@@ -59,14 +60,14 @@ spec:
5960
- name: docker
6061
image: docker:18-git
6162
tty: true
62-
volumeMounts:
63-
- mountPath: /var/run/docker.sock
64-
name: docker-sock
63+
env:
64+
- name: DOCKER_HOST
65+
value: tcp://localhost:2375
66+
- name: HOME
67+
value: /home/jenkins/agent
68+
securityContext:
69+
runAsUser: 1000
6570
volumes:
66-
- name: docker-sock
67-
hostPath:
68-
path: /var/run/docker.sock
69-
type: File
7071
- name: docker-graph-storage
7172
emptyDir: {}
7273
"""

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>bio.overture</groupId>
1212
<artifactId>dms</artifactId>
13-
<version>1.1.0</version>
13+
<version>1.2.0</version>
1414
<name>dms</name>
1515
<description>Overture Data Management System</description>
1616

src/main/java/bio/overture/dms/cli/model/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static final class DockerImagesConstants {
4848
public static final String ES_TAG = "7.6.0";
4949
public static final String DMS_GATEWAY_TAG = "1.0.0";
5050
public static final String MAESTRO_TAG = "3.8.0";
51-
public static final String DMS_UI_TAG = "1.0.2";
51+
public static final String DMS_UI_TAG = "1.0.3";
5252
}
5353

5454
public static final class MESSAGES {

0 commit comments

Comments
 (0)