Skip to content

Commit 4040a64

Browse files
committed
update to 11.2.0
1 parent 21fee97 commit 4040a64

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:stretch
22

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

37-
CMD ["/usr/local/bin/stellar-core", "--conf", "/stellar-core.cfg"]
37+
CMD ["/usr/local/bin/stellar-core", "run", "--conf", "/stellar-core.cfg"]

Dockerfile.gcloud

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ RUN /install.gcloud.sh
99
ADD entry.gcloud.sh /
1010
ENTRYPOINT ["/entry.gcloud.sh"]
1111

12-
CMD ["/usr/local/bin/stellar-core", "--conf", "/stellar-core.cfg"]
12+
CMD ["/usr/local/bin/stellar-core", "run", "--conf", "/stellar-core.cfg"]

entry.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function stellar_core_init_db() {
1717

1818
echo "Initializing core db..."
1919

20-
stellar-core --conf /stellar-core.cfg --newdb
20+
stellar-core new-db --conf /stellar-core.cfg
2121

2222
echo "Finished initializing core db"
2323

@@ -40,7 +40,7 @@ function stellar_core_init_history_archives() {
4040

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

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

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

0 commit comments

Comments
 (0)