mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-04 17:11:19 +00:00
Merge pull request #404 from tendermint/feature/develop-docker-container
dockerfile for develop branch
This commit is contained in:
commit
75c856ed3f
35
DOCKER/Dockerfile.develop
Normal file
35
DOCKER/Dockerfile.develop
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
FROM alpine:3.5
|
||||||
|
|
||||||
|
ENV DATA_ROOT /tendermint
|
||||||
|
ENV TMROOT $DATA_ROOT
|
||||||
|
|
||||||
|
RUN addgroup tmuser && \
|
||||||
|
adduser -S -G tmuser tmuser
|
||||||
|
|
||||||
|
RUN mkdir -p $DATA_ROOT && \
|
||||||
|
chown -R tmuser:tmuser $DATA_ROOT
|
||||||
|
|
||||||
|
RUN apk add --no-cache bash curl jq
|
||||||
|
|
||||||
|
ENV GOPATH /go
|
||||||
|
ENV PATH "$PATH:/go/bin"
|
||||||
|
RUN mkdir -p /go/src/github.com/tendermint/tendermint && \
|
||||||
|
apk add --no-cache go build-base git && \
|
||||||
|
cd /go/src/github.com/tendermint/tendermint && \
|
||||||
|
git clone https://github.com/tendermint/tendermint . && \
|
||||||
|
git checkout develop && \
|
||||||
|
make get_vendor_deps && \
|
||||||
|
make install && \
|
||||||
|
glide cc && \ # 183Mb => 75Mb
|
||||||
|
cd - && \
|
||||||
|
rm -rf /go/src/github.com/tendermint/tendermint && \
|
||||||
|
apk del go build-base git
|
||||||
|
|
||||||
|
VOLUME $DATA_ROOT
|
||||||
|
|
||||||
|
EXPOSE 46656
|
||||||
|
EXPOSE 46657
|
||||||
|
|
||||||
|
ENTRYPOINT ["tendermint"]
|
||||||
|
|
||||||
|
CMD ["node", "--moniker=`hostname`", "--proxy_app=dummy"]
|
15
DOCKER/Makefile
Normal file
15
DOCKER/Makefile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
build:
|
||||||
|
# TAG=0.8.0 TAG_NO_PATCH=0.8
|
||||||
|
docker build -t "tendermint/tendermint" -t "tendermint/tendermint:$TAG" -t "tendermint/tendermint:$TAG_NO_PATCH" .
|
||||||
|
|
||||||
|
push:
|
||||||
|
# TAG=0.8.0 TAG_NO_PATCH=0.8
|
||||||
|
docker push "tendermint/tendermint" "tendermint/tendermint:$TAG" "tendermint/tendermint:$TAG_NO_PATCH"
|
||||||
|
|
||||||
|
build_develop:
|
||||||
|
docker build -t "tendermint/tendermint:develop" -f Dockerfile.develop .
|
||||||
|
|
||||||
|
push_develop:
|
||||||
|
docker push "tendermint/tendermint:develop"
|
||||||
|
|
||||||
|
.PHONY: build build_develop push push_develop
|
@ -1,20 +1,55 @@
|
|||||||
# Docker
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
Tendermint uses docker for deployment of testnets via the [mintnet](github.com/tendermint/mintnet) tool.
|
- `0.8.0`, `0.8`, `latest` [(Dockerfile)](https://github.com/tendermint/tendermint/blob/bf64dd21fdb193e54d8addaaaa2ecf7ac371de8c/DOCKER/Dockerfile)
|
||||||
|
- `develop` [(Dockerfile)]()
|
||||||
|
|
||||||
For the deterministic docker builds used in testing, see the [tests directory](https://github.com/tendermint/tendermint/tree/master/test)
|
`develop` tag points to the [develop](https://github.com/tendermint/tendermint/tree/develop) branch.
|
||||||
|
|
||||||
# Build and run a docker image and container
|
# Tendermint
|
||||||
|
|
||||||
These are notes for the dev team.
|
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.
|
||||||
|
|
||||||
|
For more background, see the [introduction](https://tendermint.com/intro).
|
||||||
|
|
||||||
|
To get started developing applications, see the [application developers guide](https://tendermint.com/docs/guides/app-development).
|
||||||
|
|
||||||
|
# How to use this image
|
||||||
|
|
||||||
|
## Start one instance of the Tendermint core with the `dummy` app
|
||||||
|
|
||||||
|
A very simple example of a built-in app and Tendermint core in one container.
|
||||||
|
|
||||||
```
|
```
|
||||||
# Build base Docker image
|
docker run -it --rm -v "/tmp:/tendermint" tendermint/tendermint init
|
||||||
docker build -t "tendermint/tendermint" -t "tendermint/tendermint:0.8.0" -t "tendermint/tendermint:0.8" .
|
docker run -it --rm -v "/tmp:/tendermint" tendermint/tendermint
|
||||||
|
|
||||||
# Log into dockerhub
|
|
||||||
docker login
|
|
||||||
|
|
||||||
# Push latest build to dockerhub
|
|
||||||
docker push tendermint/tendermint
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## mintnet-kubernetes
|
||||||
|
|
||||||
|
If you want to see many containers talking to each other, consider using [mintnet-kubernetes](https://github.com/tendermint/mintnet-kubernetes), which is a tool for running Tendermint-based applications on a Kubernetes cluster.
|
||||||
|
|
||||||
|
# Supported Docker versions
|
||||||
|
|
||||||
|
This image is officially supported on Docker version 1.13.1.
|
||||||
|
|
||||||
|
Support for older versions (down to 1.6) is provided on a best-effort basis.
|
||||||
|
|
||||||
|
Please see [the Docker installation documentation](https://docs.docker.com/installation/) for details on how to upgrade your Docker daemon.
|
||||||
|
|
||||||
|
# License
|
||||||
|
|
||||||
|
View [license information](https://raw.githubusercontent.com/tendermint/tendermint/master/LICENSE) for the software contained in this image.
|
||||||
|
|
||||||
|
# User Feedback
|
||||||
|
|
||||||
|
## Issues
|
||||||
|
|
||||||
|
If you have any problems with or questions about this image, please contact us through a [GitHub](https://github.com/tendermint/tendermint/issues) issue. If the issue is related to a CVE, please check for [a `cve-tracker` issue on the `official-images` repository](https://github.com/docker-library/official-images/issues?q=label%3Acve-tracker) first.
|
||||||
|
|
||||||
|
You can also reach the image maintainers via [Slack](http://forum.tendermint.com:3000/).
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user