From 4408f97a00e1c48947d4afb54acdfafd97e44716 Mon Sep 17 00:00:00 2001 From: Wings22Actual <93226855+Wings22Actual@users.noreply.github.com> Date: Wed, 26 Jan 2022 06:56:39 +0000 Subject: [PATCH 1/2] Added note to docker_quickstart.md Added note that 'docker run --rm' can be used instead of 'docker-compose run --rm' for some commands (line 129-132) --- docs/docker_quickstart.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/docker_quickstart.md b/docs/docker_quickstart.md index 95df37811..bbffed34c 100644 --- a/docs/docker_quickstart.md +++ b/docs/docker_quickstart.md @@ -125,6 +125,11 @@ All freqtrade arguments will be available by running `docker-compose run --rm fr !!! Note "`docker-compose run --rm`" Including `--rm` will remove the container after completion, and is highly recommended for all modes except trading mode (running with `freqtrade trade` command). + +!!! Note that "`docker-compose run --rm`" will require a compose file to be provided. +Some freqtrade commands that don't require authentication such as `list-pairs` can be run with "`docker run --rm`" instead. +For example `docker run --rm freqtradeorg/freqtrade:stable list-pairs --exchange binance --quote BTC --print-json`. +This can be useful for fetching exchange information to add to your `config.json` without affecting your running containers. #### Example: Download data with docker-compose From 4a2914d72e74ea9bce45999f21212a242ae9836d Mon Sep 17 00:00:00 2001 From: Wings22Actual <93226855+Wings22Actual@users.noreply.github.com> Date: Wed, 26 Jan 2022 22:31:54 +0000 Subject: [PATCH 2/2] Update docs/docker_quickstart.md Co-authored-by: Matthias --- docs/docker_quickstart.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/docker_quickstart.md b/docs/docker_quickstart.md index bbffed34c..84c1d596a 100644 --- a/docs/docker_quickstart.md +++ b/docs/docker_quickstart.md @@ -125,11 +125,12 @@ All freqtrade arguments will be available by running `docker-compose run --rm fr !!! Note "`docker-compose run --rm`" Including `--rm` will remove the container after completion, and is highly recommended for all modes except trading mode (running with `freqtrade trade` command). - -!!! Note that "`docker-compose run --rm`" will require a compose file to be provided. -Some freqtrade commands that don't require authentication such as `list-pairs` can be run with "`docker run --rm`" instead. -For example `docker run --rm freqtradeorg/freqtrade:stable list-pairs --exchange binance --quote BTC --print-json`. -This can be useful for fetching exchange information to add to your `config.json` without affecting your running containers. + +??? Note "Using docker without docker-compose" + "`docker-compose run --rm`" will require a compose file to be provided. + Some freqtrade commands that don't require authentication such as `list-pairs` can be run with "`docker run --rm`" instead. + For example `docker run --rm freqtradeorg/freqtrade:stable list-pairs --exchange binance --quote BTC --print-json`. + This can be useful for fetching exchange information to add to your `config.json` without affecting your running containers. #### Example: Download data with docker-compose