From 65c29aa13400cdcd0ec987aa711b4daf120dfcee Mon Sep 17 00:00:00 2001 From: IgorBabalich Date: Fri, 11 Jul 2025 12:44:21 -0400 Subject: [PATCH] Starting iDempiere by a Podman --- docs/basic-installation/docker.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/basic-installation/docker.md b/docs/basic-installation/docker.md index 41b1fbc..8a4475b 100644 --- a/docs/basic-installation/docker.md +++ b/docs/basic-installation/docker.md @@ -70,3 +70,11 @@ Docker compose: ```bash $ docker compose -f docker-stack.yml up ``` + +## Podman + +```shell +podman pod create -n idempiere -p 5432:5432 -p 8443:8443 +podman run -d --name postgres -e POSTGRES_PASSWORD=postgres --pod idempiere postgres:16 +podman run -d --name idempiere --pod idempiere idempiereofficial/idempiere:12-release +```