1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-04 10:35:07 +02:00
dockerfiles/prosody/README.md
2019-12-18 20:28:54 +08:00

24 lines
634 B
Markdown

prosody
=======
[Prosody][1] is a modern XMPP communication server. It aims to be easy to set
up and configure, and efficient with system resources.
## up and running
```bash
$ docker-compose run --rm --user=root --entrypoint=chown prosody -R prosody /var/{lib,log}/prosody
$ docker-compose up -d
$ docker-compose exec prosody prosodyctl cert generate localhost
$ mv data/var/localhost.* data/etc/certs/
$ docker-compose restart
$ docker-compose exec prosody bash
>>> prosodyctl check
>>> prosodyctl status
>>> prosodyctl adduser admin@localhost
Enter new password: ******
Retype new password: ******
```
[1]: https://prosody.im/