94946f6324
motivation: setup for testing across different permutations of linux and java versions changes: * refactor docker file to allow dynamic versions of centos and java * add docker compose driver files for centos 6, 7 and java 1.8, 1.9, 1.10, 1.11 * update instructions
20 lines
324 B
Markdown
20 lines
324 B
Markdown
# Using the docker images
|
|
|
|
```
|
|
cd /path/to/netty/
|
|
```
|
|
|
|
## centos 6 with java 8
|
|
|
|
```
|
|
docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.centos-6.18.yaml run test
|
|
```
|
|
|
|
## centos 7 with java 9
|
|
|
|
```
|
|
docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.centos-7.19.yaml run test
|
|
```
|
|
|
|
etc, etc
|