Browse Source

localnet: fix node starting issue with --proxy-app flag (#5803)

pull/5805/head
PaddyMc 3 years ago
committed by GitHub
parent
commit
6ef81c6074
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      networks/local/localnode/Dockerfile

+ 1
- 1
networks/local/localnode/Dockerfile View File

@ -8,7 +8,7 @@ VOLUME [ /tendermint ]
WORKDIR /tendermint
EXPOSE 26656 26657
ENTRYPOINT ["/usr/bin/wrapper.sh"]
CMD ["node", "--proxy_app", "kvstore"]
CMD ["node", "--proxy-app", "kvstore"]
STOPSIGNAL SIGTERM
COPY wrapper.sh /usr/bin/wrapper.sh


Loading…
Cancel
Save