You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by st...@apache.org on 2021/06/16 16:31:24 UTC

[openjpa] branch master updated (c6f4282 -> 5801f41)

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

struberg pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git.


    from c6f4282  OPENJPA-2876 fix schema 'refresh'
     new 745795b  add documentation about how to run with Podman
     new 5801f41  update docker-maven-plugin

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.adoc | 12 ++++++++++++
 pom.xml     |  2 +-
 2 files changed, 13 insertions(+), 1 deletion(-)

[openjpa] 02/02: update docker-maven-plugin

Posted by st...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

struberg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git

commit 5801f419c0e7df6be74bc96e9366303cf7b1293d
Author: Mark Struberg <st...@apache.org>
AuthorDate: Wed Jun 16 18:28:23 2021 +0200

    update docker-maven-plugin
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 90f61ba..d91c17c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2004,7 +2004,7 @@
                 <plugin>
                     <groupId>io.fabric8</groupId>
                     <artifactId>docker-maven-plugin</artifactId>
-                    <version>0.34.1</version>
+                    <version>0.36.0</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>

[openjpa] 01/02: add documentation about how to run with Podman

Posted by st...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

struberg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git

commit 745795b1d9b8481088c656128ce50f3967495493
Author: Mark Struberg <st...@apache.org>
AuthorDate: Wed Jun 16 15:26:47 2021 +0200

    add documentation about how to run with Podman
    
    This is an important information for people who use Podman instead of
    Docker.
---
 README.adoc | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/README.adoc b/README.adoc
index 10613f4..384c071 100644
--- a/README.adoc
+++ b/README.adoc
@@ -36,6 +36,18 @@ We assume that Docker is installed to be used by your current user.
 The respective database image has to be started manually before starting the build.
 The reason for not starting it as part of the build itself is to be able to look at the database content after the build did run.
 
+[TIP]
+====
+*Hint for running with Podman*
+
+Some distributions switched from native Docker to Podman.
+If you get an error like `missing DOCKER_HOST` then you might try running the following command:
+
+  export DOCKER_HOST="unix:/run/user/$(id -u)/podman/podman.sock"
+  podman system service -t 3600 &
+  mvn ...
+====
+
 To start e.g. a PostgreSQL Docker image you can simply invoke the following command.
 Note the -N Maven option which stands for 'non-recursive'.
 This is used because the docker container is configured only at the root project but not at his children.