From 2bb422a35d2643265e38204af022560544294c52 Mon Sep 17 00:00:00 2001 From: Mikko Ohtamaa Date: Thu, 8 Jun 2023 21:26:47 +0300 Subject: [PATCH] Fix build instructions --- docs/docker.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/docker.md b/docs/docker.md index aa4de6071..f681d86bf 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -44,8 +44,14 @@ docker run -ti --entrypoint /bin/bash ghcr.io/tradingstrategy-ai/trade-executor: Build the Docker image from the local source code and tags it as `latest` for your local usage: ```shell -docker build -t ghcr.io/tradingstrategy-ai/trade-executo/trade-executor:latest . +docker build -t ghcr.io/tradingstrategy-ai/trade-executor:latest . docker run ghcr.io/tradingstrategy-ai/trade-executor:latest --help ``` +To pop open a Bash shell: + +```shell +docker run -it --entrypoint /bin/bash ghcr.io/tradingstrategy-ai/trade-executor:latest -- +``` + This image is referred in `docker-container.yml`.