From 3312eaa51dcd48797a068eb3f1786bd133b93d61 Mon Sep 17 00:00:00 2001 From: Badlop Date: Wed, 7 Sep 2022 13:56:19 +0200 Subject: [PATCH] Add more examples of podman usage --- CONTAINER.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CONTAINER.md b/CONTAINER.md index 6f15b8ba5..8f9c07ae8 100644 --- a/CONTAINER.md +++ b/CONTAINER.md @@ -281,7 +281,15 @@ It's also possible to use podman instead of docker, just notice: - If you want to start with command `live`, add environment variable `EJABBERD_BYPASS_WARNINGS=true` ```bash podman build \ - -t ja \ + -t ejabberd \ -f .github/container/Dockerfile \ . + +podman run --name eja1 -d -p 5222:5222 localhost/ejabberd + +podman exec eja1 ejabberdctl status + +podman exec -it eja1 sh + +podman stop eja1 ```