From cb6e136893afec50d9c148fc3d34ed5b38d74cab Mon Sep 17 00:00:00 2001 From: Ashton Honnecke Date: Mon, 23 Sep 2019 13:35:18 -0600 Subject: [PATCH] how to exec --- LOCAL.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/LOCAL.md b/LOCAL.md index db0f66d66..ce9808034 100644 --- a/LOCAL.md +++ b/LOCAL.md @@ -36,3 +36,13 @@ docker-compose up ``` bash docker-compose build ``` + +### Execing (effectively SSH into the container) + +The `exec` command requires that the container already be running, if you want to start it +that can be effected by `docker-compose up` or `docker-compose run freqtrade_develop` + +``` bash +docker-compose exec freqtrade_develop /bin/bash +``` +![image](https://user-images.githubusercontent.com/419355/65456522-ba671a80-de06-11e9-9598-df9ca0d8dcac.png)