You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
3.6 KiB

9 years ago
9 years ago
  1. # Supported tags and respective `Dockerfile` links
  2. - `0.17.1`, `latest` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/208ac32fa266657bd6c304e84ec828aa252bb0b8/DOCKER/Dockerfile)
  3. - `0.15.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/170777300ea92dc21a8aec1abc16cb51812513a4/DOCKER/Dockerfile)
  4. - `0.13.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/a28b3fff49dce2fb31f90abb2fc693834e0029c2/DOCKER/Dockerfile)
  5. - `0.12.1` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/457c688346b565e90735431619ca3ca597ef9007/DOCKER/Dockerfile)
  6. - `0.12.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/70d8afa6e952e24c573ece345560a5971bf2cc0e/DOCKER/Dockerfile)
  7. - `0.11.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/9177cc1f64ca88a4a0243c5d1773d10fba67e201/DOCKER/Dockerfile)
  8. - `0.10.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/e5342f4054ab784b2cd6150e14f01053d7c8deb2/DOCKER/Dockerfile)
  9. - `0.9.1`, `0.9`, [(Dockerfile)](https://github.com/tendermint/tendermint/blob/809e0e8c5933604ba8b2d096803ada7c5ec4dfd3/DOCKER/Dockerfile)
  10. - `0.9.0` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/d474baeeea6c22b289e7402449572f7c89ee21da/DOCKER/Dockerfile)
  11. - `0.8.0`, `0.8` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/bf64dd21fdb193e54d8addaaaa2ecf7ac371de8c/DOCKER/Dockerfile)
  12. - `develop` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/master/DOCKER/Dockerfile.develop)
  13. `develop` tag points to the [develop](https://github.com/tendermint/tendermint/tree/develop) branch.
  14. # Quick reference
  15. * **Where to get help:**
  16. https://tendermint.com/community
  17. * **Where to file issues:**
  18. https://github.com/tendermint/tendermint/issues
  19. * **Supported Docker versions:**
  20. [the latest release](https://github.com/moby/moby/releases) (down to 1.6 on a best-effort basis)
  21. # Tendermint
  22. 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.
  23. For more background, see the [introduction](https://tendermint.readthedocs.io/en/master/introduction.html).
  24. To get started developing applications, see the [application developers guide](https://tendermint.readthedocs.io/en/master/getting-started.html).
  25. # How to use this image
  26. ## Start one instance of the Tendermint core with the `kvstore` app
  27. A very simple example of a built-in app and Tendermint core in one container.
  28. ```
  29. docker run -it --rm -v "/tmp:/tendermint" tendermint/tendermint init
  30. docker run -it --rm -v "/tmp:/tendermint" tendermint/tendermint node --proxy_app=kvstore
  31. ```
  32. ## mintnet-kubernetes
  33. If you want to see many containers talking to each other, consider using [mintnet-kubernetes](https://github.com/tendermint/tools/tree/master/mintnet-kubernetes), which is a tool for running Tendermint-based applications on a Kubernetes cluster.
  34. # License
  35. View [license information](https://raw.githubusercontent.com/tendermint/tendermint/master/LICENSE) for the software contained in this image.
  36. # User Feedback
  37. ## Contributing
  38. You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.
  39. Before you start to code, we recommend discussing your plans through a [GitHub](https://github.com/tendermint/tendermint/issues) issue, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.