-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b15a891
commit bb301b6
Showing
3 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# bitcoin | ||
|
||
Docker Compose for bitcoin | ||
|
||
## Usage | ||
|
||
```bash | ||
make up | ||
``` | ||
|
||
## Containers | ||
|
||
| Name | Description | Port | | ||
| :---------------- | :------------------------: | -----: | | ||
| bitcoin | rpc port | 18332 | | ||
| | p2p port | 18333 | | ||
| | zmq block | 28332 | | ||
| | zmq tx | 28333 | | ||
| bitcoin-explorer | http port | 3000 | | ||
| redis | redis cache for explorer | 6379 | | ||
|
||
## Resources | ||
|
||
- [dockerhub: bitcoin/bitcoin](https://hub.docker.com/r/bitcoin/bitcoin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# geth-prysm | ||
|
||
Docker Compose for geth-prysm | ||
|
||
## Usage | ||
|
||
Pre-requisite is to create a shared `jwt.hex` under `./shared-data` and download the `genesis.ssz` to the same directory: | ||
|
||
```bash | ||
mkdir -p ./shared-data | ||
openssl rand -hex 32 | tr -d "\n" > ./shared-data/jwt.hex | ||
curl -sL --output ./shared-data/genesis.ssz https://github.com/eth-clients/merge-testnets/raw/main/sepolia/genesis.ssz | ||
``` | ||
|
||
Then start the containers: | ||
|
||
```bash | ||
make up | ||
``` | ||
|
||
## Containers | ||
|
||
| Name | Description | Port | | ||
| :----------- | :-------------: | ----: | | ||
| geth | rpc port | 8545 | | ||
| prysm | rpc port | 4000 | | ||
| grafana | http port | 3000 | | ||
| prometheus | http port | 9090 | | ||
|
||
## Resources | ||
|
||
- [dockerhub: ethereum/client-go](https://hub.docker.com/r/ethereum/client-go) | ||
- [dockerhub: prysmaticlabs/prysm-beacon-chain](https://hub.docker.com/r/prysmaticlabs/prysm-beacon-chain) | ||
- [dockerhub: prom/prometheus](https://hub.docker.com/r/prom/prometheus) | ||
- [dockerhub: grafana/grafana](https://hub.docker.com/r/grafana/grafana) | ||
- |