netty5/docker
Norman Maurer 38120295d1 Use aarch_64 in a consistent way (#10845)
Motivation:

We should use aarch_64 in our classifier / jni libname on aarch64 as  os.detected.arch uses the name. Being non consistent (especially across our different projects) already gave us a lot of trouble in the past.
Let's fix this once for all.

Modifications:

Use aarch_64

Result:

More consistent classifier usage on aarch64
2020-12-08 14:55:54 +01:00
..
docker-compose.centos-6.111.yaml Update to latest java 8/11/15 versions (#10774) 2020-11-04 10:41:33 +01:00
docker-compose.centos-6.112.yaml Cleanup docker / docker-compose configs (#9473) 2019-08-16 14:00:18 +02:00
docker-compose.centos-6.113.yaml Use correct JDK 13 version (#10276) 2020-05-13 07:18:43 +02:00
docker-compose.centos-6.114.yaml Update java patch versions (#10703) 2020-10-17 20:24:54 +02:00
docker-compose.centos-6.115.yaml Update to latest java 8/11/15 versions (#10774) 2020-11-04 10:41:33 +01:00
docker-compose.centos-6.graalvm111.yaml Update GraalVM with JDK 8 and add GraalVM with JDK 11 (#10333) 2020-06-02 11:53:18 +02:00
docker-compose.centos-6.openj9111.yaml Update to latest java 8/11/15 versions (#10774) 2020-11-04 10:41:33 +01:00
docker-compose.centos-7.111.yaml Update to latest java 8/11/15 versions (#10774) 2020-11-04 10:41:33 +01:00
docker-compose.centos-7.112.yaml Cleanup docker / docker-compose configs (#9473) 2019-08-16 14:00:18 +02:00
docker-compose.centos-7.113.yaml Use correct JDK 13 version (#10276) 2020-05-13 07:18:43 +02:00
docker-compose.centos-7.114.yaml Update java patch versions (#10703) 2020-10-17 20:24:54 +02:00
docker-compose.centos-7.115.yaml Update to latest java 8/11/15 versions (#10774) 2020-11-04 10:41:33 +01:00
docker-compose.yaml Use aarch_64 in a consistent way (#10845) 2020-12-08 14:55:54 +01:00
Dockerfile.centos Raise the Netty 5 minimum required Java version to Java 11. (#10650) 2020-10-12 14:13:01 +02:00
Dockerfile.cross_compile_aarch64 Raise the Netty 5 minimum required Java version to Java 11. (#10650) 2020-10-12 14:13:01 +02:00
README.md Use aarch_64 in a consistent way (#10845) 2020-12-08 14:55:54 +01:00

Using the docker images

cd /path/to/netty/

centos 6 with java 11

docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.centos-6.111.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

aarch64 cross compile for transport-native-epoll on X86_64

docker-compose -f docker/docker-compose.yaml run cross-compile-aarch64-build

The default version of aarch64 gcc is 4.9-2016.02. Update the parameter gcc_version in docker-compose.yaml to use a version you want.

etc, etc