From 2c4d0144ba6a9862500893458ea6c62316e332d6 Mon Sep 17 00:00:00 2001 From: Janne Sinivirta Date: Sun, 15 Oct 2017 14:40:02 +0300 Subject: [PATCH] Add note about binding sqlite with dry_run enabled --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e6bb944a2..2e59241fc 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,7 @@ $ docker run -d \ -v ~/.freq/tradesv2.sqlite:/freqtrade/tradesv2.sqlite \ freqtrade ``` +If you are using `dry_run=True` you need to bind `tradesv2.dry_run.sqlite` instead of `tradesv2.sqlite`. You can then use the following commands to monitor and manage your container: @@ -133,7 +134,7 @@ $ docker stop freqtrade $ docker start freqtrade ``` -With the above setup you do not need to rebuild the image for configuration +You do not need to rebuild the image for configuration changes, it will suffice to edit `config.json` and restart the container. #### Contributing