From 1483593e65cb85b69f4d0530cf80023d8bc27cce Mon Sep 17 00:00:00 2001 From: Pan Long Date: Mon, 17 Dec 2018 07:54:28 -0800 Subject: [PATCH] Fix instructions on building a dev Docker image. --- docs/installation.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 80ab2e35f..3d0ee9468 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -134,11 +134,10 @@ cd freqtrade docker build -t freqtrade . ``` -If you are developing using Docker, use `Dockerfile.develop` instead, which will also set up develop dependencies: +If you are developing using Docker, use `Dockerfile.develop` to build a dev Docker image, which will also set up develop dependencies: ```bash -cd freqtrade -docker build -f ./Dockerfile.develop -t freqtrade . +docker build -f ./Dockerfile.develop -t freqtrade-dev . ``` For security reasons, your configuration file will not be included in the image, you will need to bind mount it. It is also advised to bind mount an SQLite database file (see the "5. Run a restartable docker image" section) to keep it between updates.