Add docker-compose config to run with Java12 (#8327)

Motivation:

The first EA builds for Java12 are released so we should allow to run with these in our docker-compose setup.

Modifications:

Add docker-compose configs for Java12.

Result:

Be able to run easily with Java12 as well.
This commit is contained in:
Norman Maurer 2018-09-27 12:47:17 +02:00 committed by GitHub
parent 652650e127
commit 70efd25801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,22 @@
version: "3"
services:
runtime-setup:
image: netty:centos-6-1.12
build:
args:
centos_version : "6"
java_version : "openjdk@1.12.0"
test:
image: netty:centos-6-1.12
test-leak:
image: netty:centos-6-1.12
test-boringssl-static:
image: netty:centos-6-1.12
shell:
image: netty:centos-6-1.12

View File

@ -0,0 +1,22 @@
version: "3"
services:
runtime-setup:
image: netty:centos-7-1.12
build:
args:
centos_version : "7"
java_version : "openjdk@1.12.0"
test:
image: netty:centos-7-1.12
test-leak:
image: netty:centos-7-1.12
test-boringssl-static:
image: netty:centos-7-1.12
shell:
image: netty:centos-7-1.12