This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
tendermint
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
221
Wiki
Activity
Browse Source
Split CMD's param on space (
#1523
)
This is to avoid "ERROR: unknown flag: --proxy_app dummy" message when running "docker-compose up"
pull/1528/head
Max Levy
7 years ago
committed by
Anton Kaliaev
parent
d3c4f746a7
commit
12fc396101
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
networks/local/localnode/Dockerfile
+ 1
- 1
networks/local/localnode/Dockerfile
View File
@ -9,7 +9,7 @@ VOLUME [ /tendermint ]
WORKDIR
/tendermint
EXPOSE
46656 46657
ENTRYPOINT
[
"/usr/bin/wrapper.sh"
]
CMD
[
"node"
,
"--proxy_app
dummy"
]
CMD
[
"node"
,
"--proxy_app
"
,
"
dummy"
]
STOPSIGNAL
SIGTERM
COPY
wrapper.sh /usr/bin/wrapper.sh
Write
Preview
Loading…
Cancel
Save