32 lines
748 B
YAML
32 lines
748 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=
|
|
- OPTION_DATA_DIRECTORY=
|
|
- DATABASE_HOST=
|
|
- DATABASE_PORT=
|
|
- DATABASE_NAME=
|
|
- DATABASE_USER=
|
|
- DATABASE_PASSWORD=
|
|
- WEBHOOK_URL=
|
|
- USER_ID=
|
|
- CREDIT_TARGETS=
|
|
- DELTA_TARGETS=
|
|
restart: unless-stopped
|
|
networks:
|
|
backtest-automation:
|
|
name: backtest-automation
|
|
ipam:
|
|
config:
|
|
- subnet: <subnet> |