Add more examples of podman usage

This commit is contained in:
Badlop 2022-09-07 13:56:19 +02:00
parent fe2fd776ef
commit 3312eaa51d
1 changed files with 9 additions and 1 deletions

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`
```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
```