10eb2cd2e6
Motivation: We should use the same java versions whenever we use CentOS 6 or 7 and also use the latest Java12 version Modifications: - Use same Java versions - Use latest Java 12 version - Remove old configs which are not used anymore Result: Docker cleanup
20 lines
326 B
Markdown
20 lines
326 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 11
|
|
|
|
```
|
|
docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.centos-7.111.yaml run test
|
|
```
|
|
|
|
etc, etc
|