indodax-cli 0.1.49

A command-line interface for the Indodax cryptocurrency exchange
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
services:
  indodax-mcp:
    image: ghcr.io/${GITHUB_REPOSITORY_OWNER}/indodax-cli:latest
    build: .
    ports:
      - "8000:8000"
    restart: always
    environment:
      - INDODAX_API_KEY=${INDODAX_API_KEY}
      - INDODAX_API_SECRET=${INDODAX_API_SECRET}
      - BRIDGE_SECRET=${BRIDGE_SECRET} # Tambahkan ini untuk keamanan ekstra

  tunnel:
    image: cloudflare/cloudflared:latest
    restart: always
    command: tunnel --no-autoupdate run
    environment:
      - TUNNEL_TOKEN=${CLOUDFLARE_TUNNEL_TOKEN}