Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
justanwar authored Dec 4, 2024
1 parent 63f9c9a commit 4ed5d8c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
Heavily based on https://github.com/lukechilds/docker-electrumx

Pulls [Firo's Electrumx](https://github.com/firoorg/electrumx-firo) and builds it into a Dockerfile to run.

Docker Compose file is available if you wish to run both firod and electrumx in Docker.

## Building
```
git clone
git clone https://github.com/justanwar/docker-electrumx-firo
cd docker-electrumx-firo
docker build -t electrumx-firo .
```
## Usage
Standalone Electrumx:
```
docker run -d \
-v /root/electrumx:/data \
-v electrumx-data:/data \
-e DAEMON_URL=http://RPCUSER:RPCPASSWORD@localhost:18888 \
-e COIN=Firo \
-p 50002:50002 \
electrumx
```

If running a non-containerized firod, add `--network host` (dangerous.)
Docker Compose:
```
docker-compose up -d
```
If running a non-containerized firod, add `--network host` (can be dangerous.)

0 comments on commit 4ed5d8c

Please sign in to comment.