Skip to content

Commit 6e5fd50

Browse files
authored
Merge pull request #280 from overture-stack/feature/docker-update-1.0.1
Feature/docker update 1.0.2
2 parents 5cb910a + e6cef55 commit 6e5fd50

File tree

8 files changed

+58
-27
lines changed

8 files changed

+58
-27
lines changed

song-docker/client/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM song_base-ubuntu:latest
22
MAINTAINER ICGC <[email protected]>
33

4-
ENV CLIENT_RELEASE_VERSION 0.3.7
4+
ENV CLIENT_RELEASE_VERSION 1.0.2
55
ENV CLIENT_HOME $DCC_DATA
66
ENV DOWNLOAD_URL https://artifacts.oicr.on.ca/artifactory/dcc-release/org/icgc/dcc/song-client/${CLIENT_RELEASE_VERSION}/song-client-${CLIENT_RELEASE_VERSION}-dist.tar.gz
77
ENV TARBALL $DCC_HOME/download.tar.gz

song-docker/db/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM song_base-db:latest
22
MAINTAINER ICGC <[email protected]>
33

4-
ENV SERVER_RELEASE_VERSION 0.3.7
4+
ENV SERVER_RELEASE_VERSION 1.0.2
55
ENV PGDATA /var/lib/postgresql/data/pgdata
66
ENV POSTGRES_INIT_SQL /docker-entrypoint-initdb.d/init.sql
77

song-docker/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ services:
9898
- "./data/client:/opt/dcc/data"
9999
- "./tools:/opt/dcc/tools"
100100
object-storage:
101-
image: minio/minio:RELEASE.2017-11-22T19-55-46Z
101+
image: minio/minio:RELEASE.2018-05-11T00-29-24Z
102102
network_mode: host
103103
volumes:
104104
- "./data/minio:/opt/dcc/data"

song-docker/server/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MAINTAINER ICGC <[email protected]>
44
#
55
# Configuration
66
#
7-
ENV SERVER_RELEASE_VERSION 0.3.7
7+
ENV SERVER_RELEASE_VERSION 1.0.2
88
ENV SONG_HOME $DCC_HOME/song-server
99
ENV SONG_LOGS $DCC_HOME/song-server/logs
1010
ENV DOWNLOAD_URL https://artifacts.oicr.on.ca/artifactory/dcc-release/org/icgc/dcc/song-server/${SERVER_RELEASE_VERSION}/song-server-${SERVER_RELEASE_VERSION}-dist.tar.gz

song-docker/server/config/application.yml.template

+37-7
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,36 @@
1919
#
2020

2121
server:
22+
version: 1.0
2223
port: ${SERVER_PORT}
2324

2425
dcc-storage:
2526
url: "${STORAGE_SERVER_URL}"
2627

28+
# Hibernate
29+
spring:
30+
jpa:
31+
properties:
32+
hibernate:
33+
dialect: com.marvinformatics.hibernate.json.PostgreSQLJsonDialect
34+
# disable driver's feature detection. This is required for the following bug in SpringBoot 2.0.0+
35+
# https://hibernate.atlassian.net/browse/HHH-12368
36+
temp.use_jdbc_metadata_defaults: false
37+
38+
# Uncomment this to see the generated SQL stetements
39+
# logging.level.org.hibernate.SQL: DEBUG
40+
41+
# Uncomment this to see the binding parameters for generated SQL statements
42+
# logging.level.org.hibernate.type.descriptor.sql: TRACE
43+
44+
2745
# Management
2846
management:
29-
port: ${SERVER_MANAGEMENT_PORT}
47+
server:
48+
port: ${SERVER_MANAGEMENT_PORT}
49+
50+
swagger:
51+
alternateUrl: "/api-docs"
3052

3153
id:
3254
idUrl: "${ID_URL}"
@@ -35,6 +57,7 @@ id:
3557
persistInMemory: false
3658

3759
validation:
60+
delayMs: 30
3861
threads:
3962
core: 5
4063
max: 10
@@ -56,26 +79,35 @@ auth:
5679
# E.g. TIMEOUT(n) = TIMEOUT(n-1) * MULTIPLIER
5780
multiplier: 2.0
5881

82+
---
83+
spring.profiles: async-test
84+
validation.delayMs: 5000
85+
5986
---
6087
spring.profiles: test
6188
spring:
6289
profiles:
6390
include: [dev]
91+
6492
---
6593
spring.profiles: dev
6694
spring:
6795
profiles:
6896
include: [fastTest]
6997
datasource:
70-
initialize: true
98+
initialization-mode: always
99+
100+
management:
101+
server:
102+
port: -1
103+
104+
id.persistInMemory: true
71105

72106
auth:
73107
server:
74108
prefix: "song"
75109
suffix: "upload"
76110

77-
validation.delayMs: 3000
78-
79111
# Datasource
80112
spring.datasource:
81113
driver-class-name: org.postgresql.Driver
@@ -122,7 +154,7 @@ auth:
122154
spring:
123155
profiles: prod
124156
datasource:
125-
initialize: false
157+
initialization-mode: never
126158

127159
# Datasource
128160
spring.datasource:
@@ -134,8 +166,6 @@ spring.datasource:
134166
max-idle: 1
135167
min-idle: 1
136168

137-
validation.delayMs: 30
138-
139169
---
140170
spring:
141171
profiles: test

song-docker/storage-client/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM icgc/icgc-storage-client:1.0.23
1+
FROM overture/score:1.1.1
22
MAINTAINER ICGC <[email protected]>
33

44
ENV DCC_HOME /opt/dcc

song-docker/storage-server/Dockerfile

+15-15
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ MAINTAINER ICGC <[email protected]>
44
#
55
# Configuration
66
#
7-
ENV DCC_STORAGE_HOME $DCC_HOME/dcc-storage-server
8-
ENV DCC_STORAGE_LOGS $DCC_STORAGE_HOME/logs
7+
ENV SCORE_SERVER_VERSION 1.1.1
8+
ENV SCORE_HOME $DCC_HOME/score-server
9+
ENV SCORE_LOGS $SCORE_HOME/logs
910

1011
#rtisma-20171002 Temp Hack untill new release
11-
#ENV DOWNLOAD_URL https://artifacts.oicr.on.ca/artifactory/dcc-release/org/icgc/dcc/dcc-storage-server/[RELEASE]/dcc-storage-server-[RELEASE]-dist.tar.gz
12-
ENV DOWNLOAD_URL https://artifacts.oicr.on.ca/artifactory/dcc-snapshot/org/icgc/dcc/dcc-storage-server/1.0.24-SNAPSHOT/dcc-storage-server-1.0.24-20171102.202102-7-dist.tar.gz
12+
ENV DOWNLOAD_URL https://artifacts.oicr.on.ca/artifactory/dcc-release/bio/overture/score-server/${SCORE_SERVER_VERSION}/score-server-${SCORE_SERVER_VERSION}-dist.tar.gz
1313

14-
ENV TARBALL $DCC_HOME/dcc-storage-server.tar.gz
14+
ENV TARBALL $DCC_HOME/score-server.tar.gz
1515
ENV DCC_SCRIPTS $DCC_HOME/scripts
1616

1717
ADD config $DCC_CONFIG
@@ -20,22 +20,22 @@ ADD scripts $DCC_SCRIPTS
2020

2121
ENV EXPAND_SCRIPT $DCC_HOME/tools/expand.py
2222
ENV INPUT_FILE $DCC_CONFIG/application.yml.template
23-
ENV OUTPUT_FILE $DCC_STORAGE_HOME/conf/application.yml
23+
ENV OUTPUT_FILE $SCORE_HOME/conf/application.yml
2424

2525
RUN wget $DOWNLOAD_URL -O $TARBALL && \
2626
tar zxvf $TARBALL && \
27-
mv -f $DCC_HOME/dcc-storage-server-* $DCC_STORAGE_HOME && \
28-
rm -rf $TARBALL $DCC_STORAGE_HOME/conf/application.* && \
29-
mv $DCC_STORAGE_LOGS ${DCC_STORAGE_LOGS}.bak && \
30-
ln -s $DCC_HOME/storage_server_logs $DCC_STORAGE_LOGS
31-
32-
#ln -s $DCC_STORAGE_HOME/conf/application.yml $DCC_STORAGE_HOME/conf/application-secure.yml && \
33-
#ln -s $DCC_STORAGE_HOME/conf/application.yml $DCC_STORAGE_HOME/conf/application-prod.yml && \
34-
#ln -s $DCC_STORAGE_HOME/conf/application.yml $DCC_STORAGE_HOME/conf/application-collaboratory.yml && \
27+
mv -f $DCC_HOME/score-server-* $SCORE_HOME && \
28+
rm -rf $TARBALL $SCORE_HOME/conf/application.* && \
29+
mv $SCORE_LOGS ${SCORE_LOGS}.bak && \
30+
ln -s $DCC_HOME/storage_server_logs $SCORE_LOGS
31+
32+
#ln -s $SCORE_HOME/conf/application.yml $SCORE_HOME/conf/application-secure.yml && \
33+
#ln -s $SCORE_HOME/conf/application.yml $SCORE_HOME/conf/application-prod.yml && \
34+
#ln -s $SCORE_HOME/conf/application.yml $SCORE_HOME/conf/application-collaboratory.yml && \
3535
# wrapper.app.parameter.5=--spring.profiles.active=collaboratory,prod,secure \
3636
CMD python3 $EXPAND_SCRIPT $INPUT_FILE $OUTPUT_FILE && \
3737
/bin/bash -c $DCC_SCRIPTS/create-buckets.sh && \
38-
$DCC_STORAGE_HOME/bin/dcc-storage-server start \
38+
$SCORE_HOME/bin/dcc-storage-server start \
3939
wrapper.java.additional.2=-Dcom.sun.management.jmxremote.port=${STORAGE_SERVER_JMX_PORT} \
4040
wrapper.app.parameter.6=--server.port=${STORAGE_SERVER_PORT} \
4141
wrapper.app.parameter.5=--spring.profiles.active=amazon,collaboratory,prod,secure \

song-python-sdk/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
The SONG Python SDK
23
============================
34

0 commit comments

Comments
 (0)