24 lines
551 B
YAML
24 lines
551 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
backtest-automation:
|
||
|
image: <gitea url>/moshferatu/backtest-automation:latest
|
||
|
container_name: backtest-automation
|
||
|
volumes:
|
||
|
- <data directory>/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: <subnet>
|