Prosody Docker image based on Alpine Linux
8.0K
Prosody is a modern XMPP communication server. It aims to be easy to set up and configure, and efficient with system resources.
Additionally, for developers it aims to be easy to extend and give a flexible system on which to rapidly develop added functionality, or prototype new protocols.
# docker run -d \
--name prosody
-p 5222:5222 \
-p 5269:5269 \
-e LOCAL=romeo \
-e DOMAIN=shakespeare.lit \
-e PASSWORD=juliet4ever \
-v /data/prosody/vhosts:/etc/prosody/conf.d \
-v /data/prosody/modules:/usr/local/lib/prosody/modules \
joschi/prosody-alpine:0.10.0-1
The default Prosody configuration file can be overwritten entirely (/etc/prosody/prosody.cfg.lua) or extended by adding configuration snippets into the /etc/prosody/conf.d/ directory.
New domains can be added by placing configuration snippets with the virtual host definitions to /etc/prosody/conf.d/.i
Minimal example:
# cat vhosts/example-org.cfg.lua
VirtualHost "example.org"
enable = true
# docker run -d \
--name prosody
-p 5222:5222 \
-p 5269:5269 \
-v /data/prosody/vhosts:/etc/prosody/conf.d \
joschi/prosody-alpine:0.10.0-1
This Docker image supports creating a single user on startup by providing the following environment variables:
LOCAL: local part of the JIDDOMAIN: domain part of the JIDPASSWORD: plaintext password of the userFor example, the environment variables LOCAL=foobar, DOMAIN=example.com, PASSWORD=supersecret would create a user named "[email protected]" with the password "supersecret".
Other than that, users can be created using prosodyctl in a running container:
# docker exec -it prosody prosodyctl register foobar example.com supersecret
Additional modules, e. g. from the Prosody Community Modules, can be added by putting the Lua files into the /usr/local/lib/prosody/modules/ directory.
Prosody only writes data into two locations, which have to be persisted in Docker volumes to survive a container restart:
/var/lib/prosody/: The Prosody data_path/var/run/prosody/prosody.pid: The Prosody pidfile.This Docker image is partly based on the official prosody/prosody Docker image.
This Docker image is licensed under the MIT license, see LICENSE.
Content type
Image
Digest
sha256:7451416f0…
Size
21.3 MB
Last updated
almost 2 years ago
docker pull joschi/prosody-alpine