Litecoin node docker image used for Xorde infrastructure.
This is a dockerized built from sources litecoin node.
It's recommended to build this on same machine where you plan to run it.
git clone https://github.com/xorde-labs/docker-ton-node.git
cd docker-ton-node
docker build -t ton-node .-
Interactive mode:
docker run -it --rm --name ton-node-mainnet -v ton-db:/var/ton/db -e "CONSOLE_PORT=43678" -e "LITESERVER=true" -e "LITE_PORT=43679" -p 43678:43678 -p 43679:43679 ton-node
-
Detached mode:
docker run -d --restart=unless-stopped --name ton-node-mainnet -v ton-db:/var/ton/db -e "CONSOLE_PORT=43678" -e "LITESERVER=true" -e "LITE_PORT=43679" -p 43678:43678 -p 43679:43679 ton-node
git clone
cd docker-ton-node
cp example.env .env
# now please edit .env file to your choice, save it, and continue:
# you can skip editing .env file, and leave it unchanged
# as it is pre-configured to run on testnet
docker compose up -d