You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2022/07/01 20:23:35 UTC

[activemq-artemis-native] branch main updated: Adding podman note on README

This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis-native.git


The following commit(s) were added to refs/heads/main by this push:
     new b918387  Adding podman note on README
b918387 is described below

commit b918387d43aa1288de06ec9a02e8c8ab13aede46
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Fri Jul 1 16:23:30 2022 -0400

    Adding podman note on README
---
 README.md | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 26ddba1..9c3262c 100644
--- a/README.md
+++ b/README.md
@@ -13,11 +13,11 @@ There are two ways to build the native libraries:
 - Using a Docker Image created during the build phase
 - Bare Metal
 
-## Docker
+## Docker and Podman
 
-The only requirement needed for this compilation option is Docker.
+You an use either Docker or Podman to compile the native bits.
 
-The required image will be downloaded by Docker when you build it.
+The required image will be downloaded when you build it.
 
 You can use the script ./scripts/compile-using-docker.sh and the correct image and script should be called.
 
@@ -25,6 +25,12 @@ You can use the script ./scripts/compile-using-docker.sh and the correct image a
 $ ./scripts/compile-using-docker.sh
 ```
 
+or
+
+```bash
+$ ./scripts/compile-using-podman.sh
+```
+
 
 Or you could also using the -Pdocker profile on maven:
 
@@ -34,6 +40,14 @@ $ mvn install -Pdocker
 
 ```
 
+Or you could also using the -Ppodman profile on maven:
+
+
+```bash
+$ mvn install -Ppodman
+
+```
+
 
 ## Bare Metal Dependencies