Skip to content

TrustlessComputer/tc-prebuilds

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Trustless Computer

The module is run on top of bitcoin, which provide an Ethereum-like virtual machine

Documentation 📝

For more information about BVM Architecture, please check out the Documentation.

Docker prebuild

Available for:

  • linux/amd64
  • linux/arm/v6
  • linux/arm/v7

try now with docker-compose

version: "3.9"

services:
  trustless_node_public:
    image: ghcr.io/trustlesscomputer/tc:latest
    pull_policy: always
    restart: always
    stop_grace_period: 5m
    container_name: "trustless_node_public"
    command: [
      "/app/tc",
      "-g",
      "-u", "${BITCOIND_RPC_USERNAME}",
      "-p", "${BITCOIND_RPC_PASSWORD}",
      "-e", "${BITCOIND_RPC_ENDPOINT}",
      "--btc-wallet", "${TC_BTC_WALLET_NAME}"
    ]
    volumes:
      - ./tc-node-data:/app/tcdata
    ports:
      - 11002:10002
    env_file:
      - tc-node.env

with env file tc-node.env

BITCOIND_RPC_USERNAME=trustless
BITCOIND_RPC_PASSWORD=notrespassing
BITCOIND_RPC_ENDPOINT=172.17.0.1:8332
TC_BTC_WALLET_NAME=wallet-name

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages