-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 88b449c
Showing
19 changed files
with
1,026 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
|
||
# Created by https://www.gitignore.io/api/java,linux,intellij | ||
|
||
### Intellij ### | ||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm | ||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | ||
|
||
# User-specific stuff: | ||
.idea/**/workspace.xml | ||
.idea/**/tasks.xml | ||
.idea/dictionaries | ||
|
||
# Sensitive or high-churn files: | ||
.idea/**/dataSources/ | ||
.idea/**/dataSources.ids | ||
.idea/**/dataSources.xml | ||
.idea/**/dataSources.local.xml | ||
.idea/**/sqlDataSources.xml | ||
.idea/**/dynamic.xml | ||
.idea/**/uiDesigner.xml | ||
|
||
# Gradle: | ||
.idea/**/gradle.xml | ||
.idea/**/libraries | ||
|
||
# CMake | ||
cmake-build-debug/ | ||
|
||
# Mongo Explorer plugin: | ||
.idea/**/mongoSettings.xml | ||
|
||
## File-based project format: | ||
*.iws | ||
|
||
## Plugin-specific files: | ||
|
||
# IntelliJ | ||
/out/ | ||
|
||
# mpeltonen/sbt-idea plugin | ||
.idea_modules/ | ||
|
||
# JIRA plugin | ||
atlassian-ide-plugin.xml | ||
|
||
# Cursive Clojure plugin | ||
.idea/replstate.xml | ||
|
||
# Ruby plugin and RubyMine | ||
/.rakeTasks | ||
|
||
# Crashlytics plugin (for Android Studio and IntelliJ) | ||
com_crashlytics_export_strings.xml | ||
crashlytics.properties | ||
crashlytics-build.properties | ||
fabric.properties | ||
|
||
### Intellij Patch ### | ||
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 | ||
|
||
# *.iml | ||
# modules.xml | ||
# .idea/misc.xml | ||
# *.ipr | ||
|
||
# Sonarlint plugin | ||
.idea/sonarlint | ||
|
||
### Java ### | ||
# Compiled class file | ||
*.class | ||
|
||
# Log file | ||
*.log | ||
|
||
# BlueJ files | ||
*.ctxt | ||
|
||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
|
||
# Package Files # | ||
*.jar | ||
*.war | ||
*.ear | ||
*.zip | ||
*.tar.gz | ||
*.rar | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
### Linux ### | ||
*~ | ||
|
||
# temporary files which can be created if a process still has a handle open of a deleted file | ||
.fuse_hidden* | ||
|
||
# KDE directory preferences | ||
.directory | ||
|
||
# Linux trash folder which might appear on any partition or disk | ||
.Trash-* | ||
|
||
# .nfs files are created when an open file is removed but is still being accessed | ||
.nfs* | ||
|
||
|
||
# End of https://www.gitignore.io/api/java,linux,intellij | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
FROM maven:latest | ||
#the build | ||
ENV WORKINGDIR=/tmp | ||
ENV MINIO_ACCESS_KEY test | ||
ENV MINIO_SECRET_KEY test123456 | ||
|
||
#download minio | ||
RUN wget -O, --output-document=${WORKINGDIR}/minio https://dl.minio.io/server/minio/release/linux-amd64/minio && \ | ||
chmod +x ${WORKINGDIR}/minio | ||
|
||
|
||
#download opensll for key creation | ||
RUN apt-get -y install openssl | ||
|
||
|
||
|
||
ADD ./src ${WORKINGDIR}/src | ||
ADD ./pom.xml ${WORKINGDIR}/pom.xml | ||
ADD ./start.sh ${WORKINGDIR}/start.sh | ||
|
||
|
||
|
||
WORKDIR ${WORKINGDIR} | ||
RUN mvn install compile -DskipTests | ||
#the runtime | ||
EXPOSE 8080 | ||
|
||
CMD ["sh", "start.sh"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ssh -i /opt/keypairs/ditas-testbed-keypair.pem [email protected] << 'ENDSSH' | ||
sudo docker rm -f ditas/SecureService || true | ||
sudo docker pull ditas/SecureService:latest | ||
sudo docker run -p 50008:8080 -d --name SecureService ditas/SecureService:latest | ||
ENDSSH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# SecureService | ||
|
||
This service takes a POST request with a MultipartFile in the body and returns an URL with which you can retrieve the file later. | ||
The file is stored encrypted in a Minio DB that only the service has access to. | ||
Whenever the service shuts down the file is lost since the key is only stored in memory. | ||
The file is retrieved by a simple GET request to the service with the URL that was returned earlier. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> | ||
<component name="FacetManager"> | ||
<facet type="Spring" name="Spring"> | ||
<configuration /> | ||
</facet> | ||
<facet type="web" name="Web"> | ||
<configuration> | ||
<webroots /> | ||
<sourceRoots> | ||
<root url="file://$MODULE_DIR$/src/main/java" /> | ||
<root url="file://$MODULE_DIR$/src/main/resources" /> | ||
</sourceRoots> | ||
</configuration> | ||
</facet> | ||
</component> | ||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8"> | ||
<output url="file://$MODULE_DIR$/target/classes" /> | ||
<output-test url="file://$MODULE_DIR$/target/test-classes" /> | ||
<content url="file://$MODULE_DIR$"> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" /> | ||
<excludeFolder url="file://$MODULE_DIR$/target" /> | ||
</content> | ||
<orderEntry type="inheritedJdk" /> | ||
<orderEntry type="sourceFolder" forTests="false" /> | ||
<orderEntry type="library" name="Maven: io.minio:minio:3.0.12" level="project" /> | ||
<orderEntry type="library" name="Maven: com.google.http-client:google-http-client-xml:1.20.0" level="project" /> | ||
<orderEntry type="library" name="Maven: com.google.http-client:google-http-client:1.20.0" level="project" /> | ||
<orderEntry type="library" name="Maven: xpp3:xpp3:1.1.4c" level="project" /> | ||
<orderEntry type="library" name="Maven: com.google.guava:guava:18.0" level="project" /> | ||
<orderEntry type="library" name="Maven: com.squareup.okhttp3:okhttp:3.7.0" level="project" /> | ||
<orderEntry type="library" name="Maven: com.squareup.okio:okio:1.12.0" level="project" /> | ||
<orderEntry type="library" name="Maven: joda-time:joda-time:2.9.9" level="project" /> | ||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.9.0" level="project" /> | ||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.9.5" level="project" /> | ||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.9.5" level="project" /> | ||
<orderEntry type="library" name="Maven: com.google.code.findbugs:annotations:3.0.1" level="project" /> | ||
<orderEntry type="library" name="Maven: net.jcip:jcip-annotations:1.0" level="project" /> | ||
<orderEntry type="library" name="Maven: com.google.code.findbugs:jsr305:3.0.1" level="project" /> | ||
<orderEntry type="library" name="Maven: com.github.docker-java:docker-java:3.0.14" level="project" /> | ||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.9.5" level="project" /> | ||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.9.5" level="project" /> | ||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.9.5" level="project" /> | ||
<orderEntry type="library" name="Maven: org.glassfish.jersey.connectors:jersey-apache-connector:2.23.1" level="project" /> | ||
<orderEntry type="library" name="Maven: org.glassfish.jersey.core:jersey-common:2.26" level="project" /> | ||
<orderEntry type="library" name="Maven: org.glassfish.hk2:osgi-resource-locator:1.0.1" level="project" /> | ||
<orderEntry type="library" name="Maven: javax.ws.rs:javax.ws.rs-api:2.0.1" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.httpcomponents:httpcore:4.4.9" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.httpcomponents:httpclient:4.5.5" level="project" /> | ||
<orderEntry type="library" name="Maven: org.glassfish.jersey.core:jersey-client:2.26" level="project" /> | ||
<orderEntry type="library" name="Maven: org.glassfish.hk2.external:javax.inject:2.5.0-b42" level="project" /> | ||
<orderEntry type="library" name="Maven: com.kohlschutter.junixsocket:junixsocket-common:2.0.4" level="project" /> | ||
<orderEntry type="library" name="Maven: log4j:log4j:1.2.17" level="project" /> | ||
<orderEntry type="library" name="Maven: com.kohlschutter.junixsocket:junixsocket-native-common:2.0.4" level="project" /> | ||
<orderEntry type="library" name="Maven: org.scijava:native-lib-loader:2.0.2" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.commons:commons-compress:1.12" level="project" /> | ||
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.11" level="project" /> | ||
<orderEntry type="library" name="Maven: commons-lang:commons-lang:2.6" level="project" /> | ||
<orderEntry type="library" name="Maven: commons-io:commons-io:2.5" level="project" /> | ||
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.25" level="project" /> | ||
<orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.25" level="project" /> | ||
<orderEntry type="library" name="Maven: org.bouncycastle:bcpkix-jdk15on:1.54" level="project" /> | ||
<orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk15on:1.54" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-codec-http:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-codec:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-handler:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-buffer:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-transport:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-resolver:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-handler-proxy:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-codec-socks:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-transport-native-epoll:linux-x86_64:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-common:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-transport-native-unix-common:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.netty:netty-transport-native-kqueue:osx-x86_64:4.1.23.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: com.mashape.unirest:unirest-java:1.4.9" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.httpcomponents:httpasyncclient:4.1.3" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.httpcomponents:httpcore-nio:4.4.9" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.httpcomponents:httpmime:4.5.5" level="project" /> | ||
<orderEntry type="library" name="Maven: org.json:json:20160212" level="project" /> | ||
<orderEntry type="library" name="Maven: com.google.code.gson:gson:2.8.2" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-actuator:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.2.3" level="project" /> | ||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.2.3" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-to-slf4j:2.10.0" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-api:2.10.0" level="project" /> | ||
<orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.25" level="project" /> | ||
<orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.3.2" level="project" /> | ||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.yaml:snakeyaml:1.19" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator-autoconfigure:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework:spring-context:5.0.5.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.5" level="project" /> | ||
<orderEntry type="library" name="Maven: io.micrometer:micrometer-core:1.0.3" level="project" /> | ||
<orderEntry type="library" name="Maven: org.hdrhistogram:HdrHistogram:2.1.10" level="project" /> | ||
<orderEntry type="library" name="Maven: org.latencyutils:LatencyUtils:2.0.3" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-json:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.5" level="project" /> | ||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.9.5" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-tomcat:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-core:8.5.29" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:8.5.29" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-websocket:8.5.29" level="project" /> | ||
<orderEntry type="library" name="Maven: org.hibernate.validator:hibernate-validator:6.0.9.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: javax.validation:validation-api:2.0.1.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.2.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework:spring-web:5.0.5.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework:spring-beans:5.0.5.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework:spring-webmvc:5.0.5.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework:spring-aop:5.0.5.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework:spring-expression:5.0.5.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger2:2.7.0" level="project" /> | ||
<orderEntry type="library" name="Maven: io.swagger:swagger-annotations:1.5.13" level="project" /> | ||
<orderEntry type="library" name="Maven: io.swagger:swagger-models:1.5.13" level="project" /> | ||
<orderEntry type="library" name="Maven: io.springfox:springfox-spi:2.7.0" level="project" /> | ||
<orderEntry type="library" name="Maven: io.springfox:springfox-core:2.7.0" level="project" /> | ||
<orderEntry type="library" name="Maven: io.springfox:springfox-schema:2.7.0" level="project" /> | ||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger-common:2.7.0" level="project" /> | ||
<orderEntry type="library" name="Maven: io.springfox:springfox-spring-web:2.7.0" level="project" /> | ||
<orderEntry type="library" name="Maven: org.reflections:reflections:0.9.11" level="project" /> | ||
<orderEntry type="library" name="Maven: org.javassist:javassist:3.21.0-GA" level="project" /> | ||
<orderEntry type="library" name="Maven: com.fasterxml:classmate:1.3.4" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.mapstruct:mapstruct:1.1.0.Final" level="project" /> | ||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger-ui:2.7.0" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test-autoconfigure:2.0.1.RELEASE" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: com.jayway.jsonpath:json-path:2.4.0" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: net.minidev:json-smart:2.3" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: net.minidev:accessors-smart:1.2" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.ow2.asm:asm:5.0.4" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.assertj:assertj-core:3.9.1" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.mockito:mockito-core:2.15.0" level="project" /> | ||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.7.11" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: net.bytebuddy:byte-buddy-agent:1.7.11" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.objenesis:objenesis:2.6" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-library:1.3" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.skyscreamer:jsonassert:1.5.0" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: com.vaadin.external.google:android-json:0.0.20131108.vaadin1" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework:spring-core:5.0.5.RELEASE" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework:spring-jcl:5.0.5.RELEASE" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.xmlunit:xmlunit-core:2.5.1" level="project" /> | ||
<orderEntry type="library" name="Maven: org.springframework:spring-test:5.0.6.RELEASE" level="project" /> | ||
</component> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
pipeline { | ||
agent none | ||
stages { | ||
stage('Build - test') { | ||
agent { | ||
docker { | ||
image 'maven:latest' | ||
// TODO some cache to avoid npm sintall on every execution? | ||
} | ||
} | ||
steps { | ||
sh 'echo "Building! new"' | ||
//sh 'npm install --prefix src' | ||
sh 'mvn test' | ||
} | ||
} | ||
stage('Image creation') { | ||
agent any | ||
steps { | ||
// The Dockerfile.artifact copies the code into the image and run the jar generation. | ||
echo 'Creating the image...' | ||
|
||
// This will search for a Dockerfile.artifact in the working directory and build the image to the local repository | ||
sh "docker build -t \"ditas/SecureService\" -f Dockerfile.artifact ." | ||
echo "Done" | ||
echo 'Retrieving Docker Hub password from /opt/ditas-docker-hub.passwd...' | ||
|
||
// Get the password from a file. This reads the file from the host, not the container. Slaves already have the password in there. | ||
script { | ||
password = readFile '/opt/ditas-docker-hub.passwd' | ||
} | ||
echo "Done" | ||
echo 'Login to Docker Hub as ditasgeneric...' | ||
sh "docker login -u ditasgeneric -p ${password}" | ||
echo "Done" | ||
echo "Pushing the image ditas/data-utility-resolution-engine:latest..." | ||
sh "docker push ditas/data-utility-resolution-engine:latest" | ||
echo "Done " | ||
} | ||
} | ||
stage('Image deploy') { | ||
agent any | ||
options { | ||
// Don't need to checkout Git again | ||
skipDefaultCheckout true | ||
} | ||
steps { | ||
// Deploy to Staging environment calling the deployment script | ||
sh './jenkins/deploy-staging.sh' | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.