summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2022-09-07 13:56:19 +0200
committerBadlop <badlop@process-one.net>2022-09-07 14:00:42 +0200
commit3312eaa51dcd48797a068eb3f1786bd133b93d61 (patch)
tree7a74fcd1e8284f9f86d521f87bdda15e9d80f786
parentUpdate CONTAINER example calls to recent changes (diff)
Add more examples of podman usage
-rw-r--r--CONTAINER.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/CONTAINER.md b/CONTAINER.md
index 6f15b8ba..8f9c07ae 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
```