Skip to content

Instantly share code, notes, and snippets.

@joshuacox
Last active August 29, 2015 14:23
Show Gist options
  • Save joshuacox/3f359bec364e32e5f6c5 to your computer and use it in GitHub Desktop.
Save joshuacox/3f359bec364e32e5f6c5 to your computer and use it in GitHub Desktop.
docker run -d \
--name "ejabberd" \
-p 5222:5222 \
-p 5269:5269 \
-p 5280:5280 \
-h 'example.com' \
-e "XMPP_DOMAIN=example.com" \
-e "ERLANG_NODE=ejabberd" \
-e "TZ=Europe/Berlin" \
-e "EJABBERD_ADMIN=admin@example.com" \
-e "EJABBERD_ADMIN_RANDPWD=true" \
-e "LOGLEVEL=5" \
rroemhild/ejabberd
@rroemhild
Copy link

Change EJABBERD_AUTO_RANDPWD to EJABBERD_ADMIN_RANDPWD.

@rroemhild
Copy link

Ha it's an typo error in the readme. Thanks :)

@joshuacox
Copy link
Author

awesome, updated gist accordingly, ya these gists are very nice for this very reason, very much removes me from the situation and puts the code on it's own.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment