Created
April 11, 2021 10:38
-
-
Save mahdi13/ae93e95057ae409d6cfe9fc3230c21df to your computer and use it in GitHub Desktop.
Docker compose triangular Binance arbitrage on (almost) all markets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.6' | |
services: | |
btrader_usdt: | |
image: gabrielmilan/btrader:latest | |
container_name: btrader_usdt | |
volumes: | |
- ./config_usdt.json:/config.json:ro | |
network_mode: "host" | |
command: /bin/sh -c "sleep 0 && btrader /config.json" | |
btrader_bnb: | |
image: gabrielmilan/btrader:latest | |
container_name: btrader_bnb | |
volumes: | |
- ./config_bnb.json:/config.json:ro | |
network_mode: "host" | |
command: /bin/sh -c "sleep 30 && btrader /config.json" | |
btrader_btc: | |
image: gabrielmilan/btrader:latest | |
container_name: btrader_btc | |
volumes: | |
- ./config_btc.json:/config.json:ro | |
network_mode: "host" | |
command: /bin/sh -c "sleep 60 && btrader /config.json" | |
btrader_eth: | |
image: gabrielmilan/btrader:latest | |
container_name: btrader_eth | |
volumes: | |
- ./config_eth.json:/config.json:ro | |
network_mode: "host" | |
command: /bin/sh -c "sleep 120 && btrader /config.json" | |
btrader_busd: | |
image: gabrielmilan/btrader:latest | |
container_name: btrader_busd | |
volumes: | |
- ./config_busd.json:/config.json:ro | |
network_mode: "host" | |
command: /bin/sh -c "sleep 240 && btrader /config.json" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment