add /etc/localtime to container to syncronize time

This commit is contained in:
Matthias Voppichler
2018-03-09 20:51:28 +01:00
parent d081f6afe7
commit 4cfa3be69e
2 changed files with 3 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ vi config.json
**3. Build your docker image and run it**
```bash
docker build -t freqtrade .
docker run --rm -v `pwd`/config.json:/freqtrade/config.json -it freqtrade
docker run --rm -v /etc/localtime:/etc/localtime:ro -v `pwd`/config.json:/freqtrade/config.json -it freqtrade
```