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.