mirror of
https://github.com/blockchain-etl/ethereum-etl.git
synced 2026-01-09 13:57:54 -05:00
Add notes about Apple M1 chip to README
This commit is contained in:
@@ -105,12 +105,19 @@ For the latest version, check out the repo and call
|
||||
|
||||
4. Run streaming to console or Pub/Sub
|
||||
|
||||
> docker build -t ethereum-etl:latest -f Dockerfile .
|
||||
> docker build -t ethereum-etl:latest .
|
||||
> echo "Stream to console"
|
||||
> docker run ethereum-etl:latest stream --start-block 500000 --log-file log.txt
|
||||
> echo "Stream to Pub/Sub"
|
||||
> docker run -v /path_to_credentials_file/:/ethereum-etl/ --env GOOGLE_APPLICATION_CREDENTIALS=/ethereum-etl/credentials_file.json ethereum-etl:latest stream --start-block 500000 --output projects/<your-project>/topics/crypto_ethereum
|
||||
|
||||
If running on Apple M1 chip add the `--platform linux/x86_64` option to the `build` and `run` commands e.g.:
|
||||
|
||||
```
|
||||
docker build --platform linux/x86_64 -t ethereum-etl:latest .
|
||||
docker run --platform linux/x86_64 ethereum-etl:latest stream --start-block 500000
|
||||
```
|
||||
|
||||
## Projects using Ethereum ETL
|
||||
* [Google](https://goo.gl/oY5BCQ) - Public BigQuery Ethereum datasets
|
||||
* [Nansen](https://www.nansen.ai/?ref=ethereumetl) - Analytics platform for Ethereum
|
||||
|
||||
Reference in New Issue
Block a user