df8b9d3fb9
Motivation: docker-sync.io helps to speed up docker FS access on macOS and so make builds there a lot faster. We should add some config to help users use it. Modifications: Add docker-sync configs for centos-6.18 which is what we use for releases. Result: Faster builds via docker and when using macOS possible.
35 lines
554 B
YAML
35 lines
554 B
YAML
version: "3"
|
|
|
|
services:
|
|
|
|
runtime-setup:
|
|
image: netty:centos-6-1.8
|
|
build:
|
|
args:
|
|
centos_version : "6"
|
|
java_version : "1.8.202"
|
|
|
|
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
|