From db93610276fe1e1e2332f142dcf2fe0243908669 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Fri, 19 Jan 2024 10:23:45 -0800 Subject: [PATCH] Add backtest automation Docker compose file --- backtest-automation.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 backtest-automation.yaml diff --git a/backtest-automation.yaml b/backtest-automation.yaml new file mode 100644 index 0000000..53d4055 --- /dev/null +++ b/backtest-automation.yaml @@ -0,0 +1,24 @@ +version: "3" +services: + backtest-automation: + image: /moshferatu/backtest-automation:latest + container_name: backtest-automation + volumes: + - /SPX Options Quotes:/spx-options-quotes + networks: + - backtest-automation + environment: + - USER= + - PASSWORD= + - ORDER= + - ITEM= + - DOWNLOAD_DIRECTORY= + - WEBHOOK_URL= + - USER_ID= + restart: unless-stopped +networks: + backtest-automation: + name: backtest-automation + ipam: + config: + - subnet: \ No newline at end of file