tendermint/DOCKER/README.md

68 lines
3.2 KiB
Markdown
Raw Normal View History

2018-06-06 08:04:42 -07:00
# Docker
## Supported tags and respective `Dockerfile` links
2018-04-02 07:57:25 -07:00
- `0.17.1`, `latest` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/208ac32fa266657bd6c304e84ec828aa252bb0b8/DOCKER/Dockerfile)
- `0.15.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/170777300ea92dc21a8aec1abc16cb51812513a4/DOCKER/Dockerfile)
2018-01-09 09:05:15 -08:00
- `0.13.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/a28b3fff49dce2fb31f90abb2fc693834e0029c2/DOCKER/Dockerfile)
2017-12-08 09:35:35 -08:00
- `0.12.1` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/457c688346b565e90735431619ca3ca597ef9007/DOCKER/Dockerfile)
2017-12-07 11:49:29 -08:00
- `0.12.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/70d8afa6e952e24c573ece345560a5971bf2cc0e/DOCKER/Dockerfile)
2017-11-10 12:17:13 -08:00
- `0.11.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/9177cc1f64ca88a4a0243c5d1773d10fba67e201/DOCKER/Dockerfile)
2017-09-25 10:06:49 -07:00
- `0.10.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/e5342f4054ab784b2cd6150e14f01053d7c8deb2/DOCKER/Dockerfile)
2017-06-03 18:37:56 -07:00
- `0.9.1`, `0.9`, [(Dockerfile)](https://github.com/tendermint/tendermint/blob/809e0e8c5933604ba8b2d096803ada7c5ec4dfd3/DOCKER/Dockerfile)
- `0.9.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/d474baeeea6c22b289e7402449572f7c89ee21da/DOCKER/Dockerfile)
- `0.8.0`, `0.8` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/bf64dd21fdb193e54d8addaaaa2ecf7ac371de8c/DOCKER/Dockerfile)
- `develop` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/master/DOCKER/Dockerfile.develop)
`develop` tag points to the [develop](https://github.com/tendermint/tendermint/tree/develop) branch.
2018-06-06 08:04:42 -07:00
## Quick reference
2017-09-25 10:06:49 -07:00
* **Where to get help:**
2018-05-22 12:09:47 -07:00
https://cosmos.network/community
2017-09-25 10:06:49 -07:00
* **Where to file issues:**
https://github.com/tendermint/tendermint/issues
* **Supported Docker versions:**
[the latest release](https://github.com/moby/moby/releases) (down to 1.6 on a best-effort basis)
2018-06-06 08:04:42 -07:00
## Tendermint
2015-06-10 09:06:28 -07:00
Tendermint Core is Byzantine Fault Tolerant (BFT) middleware that takes a state transition machine, written in any programming language, and securely replicates it on many machines.
2017-09-25 10:06:49 -07:00
For more background, see the [introduction](https://tendermint.readthedocs.io/en/master/introduction.html).
2017-09-25 10:06:49 -07:00
To get started developing applications, see the [application developers guide](https://tendermint.readthedocs.io/en/master/getting-started.html).
2018-06-06 08:04:42 -07:00
## How to use this image
2016-02-04 21:21:13 -08:00
2018-06-06 08:04:42 -07:00
### Start one instance of the Tendermint core with the `kvstore` app
2015-06-10 09:06:28 -07:00
2018-05-22 12:09:47 -07:00
A quick example of a built-in app and Tendermint core in one container.
```
docker run -it --rm -v "/tmp:/tendermint" tendermint/tendermint init
docker run -it --rm -v "/tmp:/tendermint" tendermint/tendermint node --proxy_app=kvstore
2016-02-04 21:21:13 -08:00
```
2018-06-06 08:04:42 -07:00
## Local cluster
2018-05-22 12:09:47 -07:00
To run a 4-node network, see the `Makefile` in the root of [the repo](https://github.com/tendermint/tendermint/master/Makefile) and run:
2018-05-22 12:09:47 -07:00
```
make build-linux
make build-docker-localnode
make localnet-start
```
2018-05-22 12:09:47 -07:00
Note that this will build and use a different image than the ones provided here.
2018-06-06 08:04:42 -07:00
## License
2018-05-22 12:09:47 -07:00
- Tendermint's license is [Apache 2.0](https://github.com/tendermint/tendermint/master/LICENSE).
2018-06-06 08:04:42 -07:00
## Contributing
2018-05-22 12:09:47 -07:00
Contributions are most welcome! See the [contributing file](https://github.com/tendermint/tendermint/blob/master/CONTRIBUTING.md) for more information.