netty5/docker/docker-sync-compose.centos-6.18.yaml
Norman Maurer 2c007f8fa6 Also use adoptjdk builds when using docker-sync (#8971)
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.
2019-03-23 17:13:11 +01:00

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