1
0
Fork 0

Add Docker and Drone configurations

This commit is contained in:
John Ahlroos 2021-07-05 10:10:52 +03:00
parent 6ee822a218
commit 652cf12801
Signed by: john
GPG Key ID: 258D0F70DB84CD5D
3 changed files with 90 additions and 0 deletions

64
.drone.yml Normal file
View File

@ -0,0 +1,64 @@
kind: pipeline
name: default
type: docker
steps:
- name: restore-cache
image: drillster/drone-volume-cache
settings:
restore: true
mount:
- /drone/src/.gradle-cache
volumes:
- name: cache
path: /cache
- name: build
image: openjdk:16
commands:
- ./gradlew --no-daemon --build-cache clean assemble
environment:
GRADLE_USER_HOME: /drone/src/.gradle-cache
ORG_GRADLE_PROJECT_BUILD_VERSION: ${DRONE_TAG}
- name: deploy
image: openjdk:16
commands:
- ./gradlew --no-daemon --info --build-cache jib
settings:
use_cache: true
environment:
GRADLE_USER_HOME: /drone/src/.gradle-cache
ORG_GRADLE_PROJECT_DOCKER_REGISTRY:
from_secret: DOCKER_REPO
ORG_GRADLE_PROJECT_BUILD_VERSION: ${DRONE_TAG}
- name: rebuild-cache
image: drillster/drone-volume-cache
settings:
rebuild: true
mount:
- /drone/src/.gradle-cache
volumes:
- name: cache
path: /cache
trigger:
ref:
include:
- refs/tags/**
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}
- name: cache
host:
path: /tmp/hits-drone-cache

View File

@ -1,3 +1,7 @@
plugins {
id "com.google.cloud.tools.jib" version "3.1.1" apply false
}
group 'com.devsoap.parsers'
version '1.0'

View File

@ -1,3 +1,7 @@
plugins {
id 'com.google.cloud.tools.jib'
}
dependencies {
implementation 'io.javalin:javalin:3.13.8'
implementation "org.thymeleaf:thymeleaf:3.0.11.RELEASE"
@ -12,3 +16,21 @@ dependencies {
}
application.mainClass='com.devsoap.parsers.api.Api'
jib {
from {
image = "openjdk:$targetCompatibility"
}
to {
def registry = findProperty('DOCKER_REGISTRY')
image = "${registry ? registry + '/' : ''}${project.group}/${rootProject.name}"
tags = [version, 'latest']
}
container {
mainClass = "com.devsoap.parsers.api.Api"
jvmFlags = []
ports = ['7000']
volumes = []
environment = [:]
}
}