additional notification extensions
All checks were successful
thrrgilag/prosody-docker/pipeline/head This commit looks good
All checks were successful
thrrgilag/prosody-docker/pipeline/head This commit looks good
This commit is contained in:
parent
1f874b0351
commit
e9fcdb1ad6
2 changed files with 5 additions and 2 deletions
|
@ -4,13 +4,15 @@ RUN apt-get update && \
|
||||||
apt-get install ca-certificates extrepo -y && \
|
apt-get install ca-certificates extrepo -y && \
|
||||||
extrepo enable prosody && \
|
extrepo enable prosody && \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install prosody prosody-modules -y
|
apt-get install prosody prosody-modules lua-luaossl -y
|
||||||
|
|
||||||
RUN mkdir -p /run/prosody/ && \
|
RUN mkdir -p /run/prosody/ && \
|
||||||
chown -R prosody:prosody /run/prosody/
|
chown -R prosody:prosody /run/prosody/
|
||||||
|
|
||||||
RUN mkdir -p /etc/prosody/conf.d/
|
RUN mkdir -p /etc/prosody/conf.d/
|
||||||
|
|
||||||
|
RUN prosodyctl install --server=https://modules.prosody.im/rocks/ mod_cloud_notify_extensions
|
||||||
|
|
||||||
COPY prosody.cfg.lua /etc/prosody/prosody.cfg.lua
|
COPY prosody.cfg.lua /etc/prosody/prosody.cfg.lua
|
||||||
|
|
||||||
EXPOSE 5222
|
EXPOSE 5222
|
||||||
|
|
|
@ -72,7 +72,8 @@ modules_enabled = {
|
||||||
"websocket"; -- XMPP over WebSockets
|
"websocket"; -- XMPP over WebSockets
|
||||||
|
|
||||||
-- Other specific functionality
|
-- Other specific functionality
|
||||||
"cloud_notify"
|
"cloud_notify";
|
||||||
|
"cloud_notify_extensions";
|
||||||
--"announce"; -- Send announcement to all online users
|
--"announce"; -- Send announcement to all online users
|
||||||
--"groups"; -- Shared roster support
|
--"groups"; -- Shared roster support
|
||||||
--"legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
|
--"legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
|
||||||
|
|
Loading…
Reference in a new issue