17 lines
526 B
YAML
17 lines
526 B
YAML
services:
|
|
bybit-bot:
|
|
image: git.frik.su/eugenebee/tradingbot-with-bybitapi:latest
|
|
container_name: bybit-bot
|
|
environment:
|
|
API_KEY: "bybit-API-key"
|
|
API_SECRET: "bybit-secret-API-key"
|
|
BOT_TOKEN: "telegram-bot-token"
|
|
WHITELIST: "chat-id-1, chat-id-2"
|
|
LEVERAGE: "1" # Not supported. Set leverage in bybit account
|
|
TESTNET: "False"
|
|
DEMOTRADING: "False"
|
|
LOOPSLEEPTIME: "1"
|
|
SHOWEXTRADEBUGLOGS: "False"
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped |