Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2022-09-07 14:56:19 +0300
committerBadlop <badlop@process-one.net>2022-09-07 15:00:42 +0300
commit3312eaa51dcd48797a068eb3f1786bd133b93d61 (patch)
tree7a74fcd1e8284f9f86d521f87bdda15e9d80f786 /CONTAINER.md
parentfe2fd776ef95556585726000a31547d838b47150 (diff)
Add more examples of podman usage
Diffstat (limited to 'CONTAINER.md')
-rw-r--r--CONTAINER.md10
1 files changed, 9 insertions, 1 deletions
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
```