BTDEX + Docker = Containerized Signum Fun!
10K+
This project takes the standalone BTDEX application and transforms into portable, web-accessible container using Docker and noVNC.
BTDEX is a decentralized exchange (DEX) system running on the Signum blockchain.
NOTE: The Docker command provided in this quick start is given as an example and parameters should be adjusted as needed.
First, clone this repository:
git clone https://github.com/furritos/docker-btdex.git
cd docker-btdex
Launch the BTDEX Docker container with the following, Linux and PowerShell compatible, command:
docker run -d \
--name=container-btdex \
-v ${pwd}/config:/opt/btdex/.config \
-v ${pwd}/plots:/opt/btdex/plots \
-v ${pwd}/cache:/opt/btdex/cache \
-p 5800:8080 \
-p 5900:5900 \
furritos/docker-btdex
Finally, take your favorite web browse and open http://localhost:5800.
Please refer to this Get Started page for more information on using BTDEX.
NOTE: By default, the resolution is set to 1440X900. To override these values, set resolution to 1680X1050, the docker run command line would be:
docker run -d \
--name=container-btdex \
-v ${pwd}/config:/opt/btdex/.config \
-v ${pwd}/plots:/opt/btdex/plots \
-v ${pwd}/cache:/opt/btdex/cache \
-p 5800:8080 \
-p 5900:5900 \
-e DISPLAY_WIDTH=1680 \
-e DISPLAY_HEIGHT=1050 \
furritos/docker-btdex
Full documentation is available at https://github.com/furritos/docker-btdex.
Having troubles with the container or have questions? Please create a new issue.
Content type
Image
Digest
sha256:71ea13752…
Size
966 MB
Last updated
almost 3 years ago
docker pull furritos/docker-btdex