An open API service indexing awesome lists of open source software.

https://github.com/etcdevteam/docker-classic-geth

Docker container for geth classic, built from source on master
https://github.com/etcdevteam/docker-classic-geth

Last synced: 5 months ago
JSON representation

Docker container for geth classic, built from source on master

Awesome Lists containing this project

README

          

```
docker run -it
```

```
docker run -it --fast --rpc --rpc-domain 0.0.0.0
```

## Using Volumes
To persist downloaded blockchain data between container starts, use Docker [volumes](https://docs.docker.com/storage/volumes/).

```
docker volume create ethereum-classic

docker run -it -v ethereum-classic:/root/.ethereum-classic
```