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.

24 lines
700 B

9 years ago
9 years ago
  1. # Docker
  2. Tendermint uses docker for deployment of testnets via the [mintnet](github.com/tendermint/mintnet) tool.
  3. For faster development iterations (ie. to avoid docker builds),
  4. the dockerfile just sets up the OS, and tendermint is fetched/installed at runtime.
  5. For the deterministic docker builds used in testing, see the [tests directory](https://github.com/tendermint/tendermint/tree/master/test)
  6. # Build and run a docker image and container
  7. These are notes for the dev team.
  8. ```
  9. # Build base Docker image
  10. # Make sure ./run.sh exists.
  11. docker build -t tendermint/tmbase -f Dockerfile .
  12. # Log into dockerhub
  13. docker login
  14. # Push latest build to dockerhub
  15. docker push tendermint/tmbase
  16. ```