From a9ca72c1b8e489117d9e737592da7240bc3ef1b0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 6 Jan 2021 11:04:14 +0100 Subject: [PATCH] Fix typo in documentation --- docs/docker_quickstart.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docker_quickstart.md b/docs/docker_quickstart.md index 48ee34954..e25e1b050 100644 --- a/docs/docker_quickstart.md +++ b/docs/docker_quickstart.md @@ -123,7 +123,7 @@ Advanced users may edit the docker-compose file further to include all possible All possible freqtrade arguments will be available by running `docker-compose run --rm freqtrade `. !!! Note "`docker-compose run --rm`" - Including `--rm` will clean up the container after completion, and is highly recommended for all modes except trading mode (running with `freqtrade trade` command). + Including `--rm` will remove the container after completion, and is highly recommended for all modes except trading mode (running with `freqtrade trade` command). #### Example: Download data with docker-compose @@ -172,19 +172,19 @@ docker-compose run --rm freqtrade plot-dataframe --strategy AwesomeStrategy -p B The output will be stored in the `user_data/plot` directory, and can be opened with any modern browser. -## Data analayis using docker compose +## Data analysis using docker compose Freqtrade provides a docker-compose file which starts up a jupyter lab server. You can run this server using the following command: ``` bash -docker-compose --rm -f docker/docker-compose-jupyter.yml up +docker-compose -f docker/docker-compose-jupyter.yml up ``` -This will create a dockercontainer running jupyter lab, which will be accessible using `https://127.0.0.1:8888/lab`. +This will create a docker-container running jupyter lab, which will be accessible using `https://127.0.0.1:8888/lab`. Please use the link that's printed in the console after startup for simplified login. -Since part of this image is built on your machine, it is recommended to rebuild the image from time to time to keep freqtrade (and dependencies) uptodate. +Since part of this image is built on your machine, it is recommended to rebuild the image from time to time to keep freqtrade (and dependencies) up-to-date. ``` bash docker-compose -f docker/docker-compose-jupyter.yml build --no-cache