collect-candles is a small container, that is collecting candles from all crypto currencies from binanace to feed later on a KI
for starting the collect-candles container you could use the following ´docker-compose.yml´
version: '3'
services:
collect-candles:
image: "12abcloud/collect-candles:latest"
build:
dockerfile: Dockerfile
context: ./
volumes:
- /data/collect-data/db:/data/collect-data/db
environment:
# DEBUG: "True"
INTERVAL: "30m"
CANDLE_INTERVAL: "15m"
DATABASE_PATH: "/data/collect-data/db/"
restart: always
| Variable | Description | Default |
|---|---|---|
| DEBUG | activate the debug logging | false |
| INTERVAL | interval for fetching data | 10m |
| CANDLE_INTERVAL | interval of the candles | 15m |
| DATABASE_PATH | path to database directory | /data/collect-data/db/ |
Content type
Image
Digest
Size
15.5 MB
Last updated
over 6 years ago
docker pull 12abcloud/collect-candles