25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00

Add more examples of podman usage

This commit is contained in:
Badlop 2022-09-07 13:56:19 +02:00
parent fe2fd776ef
commit 3312eaa51d

View File

@ -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` - If you want to start with command `live`, add environment variable `EJABBERD_BYPASS_WARNINGS=true`
```bash ```bash
podman build \ podman build \
-t ja \ -t ejabberd \
-f .github/container/Dockerfile \ -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
``` ```