Skip to content

Commit

Permalink
update to 11.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrenarchy committed Jul 1, 2019
1 parent 21fee97 commit 4040a64
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:stretch

# git tag from https://github.com/stellar/stellar-core
ARG STELLAR_CORE_VERSION="v11.1.0"
ARG STELLAR_CORE_VERSION="v11.2.0"
ARG STELLAR_CORE_BUILD_DEPS="git build-essential pkg-config autoconf automake libtool bison flex libpq-dev wget pandoc"
ARG STELLAR_CORE_DEPS="curl jq libpq5"
ARG CONFD_VERSION="0.16.0"
Expand Down Expand Up @@ -34,4 +34,4 @@ ADD confd /etc/confd
ADD entry.sh /
ENTRYPOINT ["/entry.sh"]

CMD ["/usr/local/bin/stellar-core", "--conf", "/stellar-core.cfg"]
CMD ["/usr/local/bin/stellar-core", "run", "--conf", "/stellar-core.cfg"]
2 changes: 1 addition & 1 deletion Dockerfile.gcloud
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ RUN /install.gcloud.sh
ADD entry.gcloud.sh /
ENTRYPOINT ["/entry.gcloud.sh"]

CMD ["/usr/local/bin/stellar-core", "--conf", "/stellar-core.cfg"]
CMD ["/usr/local/bin/stellar-core", "run", "--conf", "/stellar-core.cfg"]
4 changes: 2 additions & 2 deletions entry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function stellar_core_init_db() {

echo "Initializing core db..."

stellar-core --conf /stellar-core.cfg --newdb
stellar-core new-db --conf /stellar-core.cfg

echo "Finished initializing core db"

Expand All @@ -40,7 +40,7 @@ function stellar_core_init_history_archives() {

echo "Initializing history archive ${HISTORY_ARCHIVE}..."

stellar-core --conf /stellar-core.cfg --newhist $HISTORY_ARCHIVE
stellar-core new-hist $HISTORY_ARCHIVE --conf /stellar-core.cfg

echo "Finished initializing history archive ${HISTORY_ARCHIVE}."

Expand Down

0 comments on commit 4040a64

Please sign in to comment.