freqtrade_origin/docker-compose.yml

37 lines
1.2 KiB
YAML
Raw Permalink Normal View History

---
services:
freqtrade:
image: freqtradeorg/freqtrade:stable
2020-04-21 17:47:49 +00:00
# image: freqtradeorg/freqtrade:develop
2020-09-20 14:20:01 +00:00
# Use plotting image
# image: freqtradeorg/freqtrade:develop_plot
# # Enable GPU Image and GPU Resources (only relevant for freqAI)
# # Make sure to uncomment the whole deploy section
# deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# count: 1
# capabilities: [gpu]
# Build step - only needed when additional dependencies are needed
# build:
# context: .
2021-04-03 05:17:02 +00:00
# dockerfile: "./docker/Dockerfile.custom"
restart: unless-stopped
container_name: freqtrade
volumes:
- "./user_data:/freqtrade/user_data"
2021-01-25 19:48:52 +00:00
# Expose api on port 8080 (localhost only)
2021-10-06 18:09:08 +00:00
# Please read the https://www.freqtrade.io/en/stable/rest-api/ documentation
# for more information.
2021-10-06 18:09:08 +00:00
ports:
- "127.0.0.1:8080:8080"
# Default command used when running `docker compose up`
command: >
trade
2020-04-21 17:47:49 +00:00
--logfile /freqtrade/user_data/logs/freqtrade.log
--db-url sqlite:////freqtrade/user_data/tradesv3.sqlite
--config /freqtrade/user_data/config.json
--strategy SampleStrategy