2c007f8fa6
Motivation: We recently changed the docker config to use adoptjdk builds but missed to include the docker-sync related files. Modifications: Use adoptjdk there as well. Result: More conistent usage of JDK versions.
35 lines
563 B
YAML
35 lines
563 B
YAML
version: "3"
|
|
|
|
services:
|
|
|
|
runtime-setup:
|
|
image: netty:centos-6-1.8
|
|
build:
|
|
args:
|
|
centos_version : "6"
|
|
java_version : "adopt@1.8.202-08"
|
|
|
|
test:
|
|
image: netty:centos-6-1.8
|
|
volumes:
|
|
- code-sync:/code:nocopy
|
|
|
|
test-leak:
|
|
image: netty:centos-6-1.8
|
|
volumes:
|
|
- code-sync:/code:nocopy
|
|
|
|
test-boringssl-static:
|
|
image: netty:centos-6-1.8
|
|
volumes:
|
|
- code-sync:/code:nocopy
|
|
|
|
shell:
|
|
image: netty:centos-6-1.8
|
|
volumes:
|
|
- code-sync:/code:nocopy
|
|
|
|
volumes:
|
|
code-sync:
|
|
external: true
|