Heavily based on https://github.com/lukechilds/docker-electrumx
Pulls Firo's Electrumx and builds it into a Dockerfile to run.
Docker Compose file is available if you wish to run both firod and electrumx in Docker.
git clone https://github.com/justanwar/docker-electrumx-firo
cd docker-electrumx-firo
docker build -t electrumx-firo .
Create a copy of firo.conf
and modify as necessary.
cd cfg
cp firo.conf.example firo.conf
Then run either standalone Electrumx or with Docker Compose:
docker run -d \
-v electrumx-data:/data \
-e DAEMON_URL=http://rpcuser:rpcpassword@localhost:8888 \
-e COIN=Firo \
-p 50002:50002 \
electrumx
docker-compose up -d
If running a non-containerized firod, add --network host
(can be dangerous.)
To shut down
docker ps
docker stop <container_ID>
docker-compose down