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.

20 lines
579 B

10 years ago
10 years ago
  1. # Docker
  2. Tendermint uses docker for deployment of testnets via the [mintnet](github.com/tendermint/mintnet) tool.
  3. For the deterministic docker builds used in testing, see the [tests directory](https://github.com/tendermint/tendermint/tree/master/test)
  4. # Build and run a docker image and container
  5. These are notes for the dev team.
  6. ```
  7. # Build base Docker image
  8. docker build -t "tendermint/tendermint" -t "tendermint/tendermint:0.8.0" -t "tendermint/tendermint:0.8" .
  9. # Log into dockerhub
  10. docker login
  11. # Push latest build to dockerhub
  12. docker push tendermint/tendermint
  13. ```