Browse Source

basecoin is deprecated

pull/1943/head
Anton Kaliaev 7 years ago
parent
commit
5c74dd7f5b
No known key found for this signature in database GPG Key ID: 7B6881D965918214
2 changed files with 0 additions and 55 deletions
  1. +0
    -41
      docker/README.rst
  2. +0
    -14
      docker/basecoin/Dockerfile

+ 0
- 41
docker/README.rst View File

@ -40,47 +40,6 @@ Building images by yourself:
contains Docker container descriptions. Using this folder you can build your contains Docker container descriptions. Using this folder you can build your
own Docker images with the tendermint application. own Docker images with the tendermint application.
Basecoin
--------
Build the container: Copy the ``basecoin`` binary to the ``basecoin``
folder.
::
docker build -t basecoin basecoin
The application configuration will be stored at ``/basecoin``.
Initialize basecoin configuration and keep it after the container is
finished:
::
docker run --rm -v basecoindata:/basecoin basecoin init deadbeef
Use your own basecoin account instead of ``deadbeef`` in the ``init``
command.
Get the public key of basecoin: We use a trick here: since the basecoin
and the tendermint configuration folders are similar, the ``tendermint``
command can extract the public key for us if we feed the basecoin
configuration folder to tendermint.
::
docker run --rm -v basecoindata:/tendermint tendermint show_validator
Run the docker tendermint application with: This is a two-step process:
\* Run the basecoin container. \* Run the tendermint container and
expose the ports that allow clients to connect. The --proxy\_app should
contain the basecoin application's IP address and port.
::
docker run --rm -d -v basecoindata:/basecoin basecoin start --without-tendermint
docker run --rm -d -v data:/tendermint -p 46656-46657:46656-46657 tendermint node --proxy_app tcp://172.17.0.2:46658
Ethermint Ethermint
--------- ---------


+ 0
- 14
docker/basecoin/Dockerfile View File

@ -1,14 +0,0 @@
FROM busybox
#Use --build-arg to change where the basecoin binary resides
ARG BASECOIN_BINARY=basecoin
ENV BCHOME /basecoin
COPY $BASECOIN_BINARY /usr/bin/basecoin
RUN adduser -h $BCHOME -D basecoin
VOLUME [ $BCHOME ]
EXPOSE 46658
USER basecoin
ENTRYPOINT ["/usr/bin/basecoin"]
CMD ["start","--without-tendermint"]
WORKDIR $BCHOME
STOPSIGNAL SIGTERM

Loading…
Cancel
Save