From 9e7c55a08331629bea8c3acf6a9c009df19bbaea Mon Sep 17 00:00:00 2001 From: Sylvain Bellemare Date: Mon, 11 Apr 2016 09:43:17 +0200 Subject: [PATCH] Add docs for config when using docker (#169) --- docs/source/installing-server.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/source/installing-server.md b/docs/source/installing-server.md index 4047f817..6b39c5a2 100644 --- a/docs/source/installing-server.md +++ b/docs/source/installing-server.md @@ -128,8 +128,22 @@ then do a one-time configuration step to create the config file; it will be stored on your host machine under ` ~/.bigchaindb_docker/config`: ```text $ docker-compose run --rm bigchaindb bigchaindb configure +Starting bigchaindb_rethinkdb-data_1 +Generating keypair +API Server bind? (default `0.0.0.0:9984`): +Database host? (default `localhost`): rethinkdb +Database port? (default `28015`): +Database name? (default `bigchain`): +Statsd host? (default `localhost`): statsd +Statsd port? (default `8125`): +Statsd rate? (default `0.01`): +Ready to go! ``` +As shown above, make sure that you set the database and statsd hosts to their +corresponding service names (`rethinkdb`, `statsd`), defined in`docker-compose.yml` +and `docker-compose-monitor.yml`. + You can then start it up (in the background, as a daemon) using: ```text $ docker-compose up -d