From 958ab841a1938bfdd7b1e37203dfda8a121463a8 Mon Sep 17 00:00:00 2001 From: Christophe Romain Date: Wed, 27 Feb 2019 14:14:09 +0100 Subject: [PATCH] Fix README to copy configuration from default example --- mix/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mix/README.md b/mix/README.md index d18e975..8489d50 100644 --- a/mix/README.md +++ b/mix/README.md @@ -24,9 +24,11 @@ docker run --rm -v $(pwd):$(pwd) -w $(pwd) ejabberd/mix do deps.get, deps.compil ## Run ejabberd with mix command-line tool attached -You can customize the configuration by editing the file `config/ejabberd.yml`. As a default, you can run ejabberd with console attached on "localhost" domain: +You need to copy default configuration, and can edit it to customize your setup. +As a default, you can run ejabberd with console attached on "localhost" domain: ```bash +cp ejabberd.yml.example config/ejabberd.yml docker run --rm -it -p 5222:5222 -p 5280:5280 -v $(pwd):$(pwd) -w $(pwd) --entrypoint="/usr/bin/iex" ejabberd/mix -S mix ```