-
Notifications
You must be signed in to change notification settings - Fork 907
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Docker README.md #4160
Fix Docker README.md #4160
Conversation
@@ -118,7 +118,7 @@ docker run -it --rm \ | |||
--network "bk_network" \ | |||
--env BK_zkServers=test_zookeeper:2181 \ | |||
apache/bookkeeper \ | |||
bookkeeper shell metaformat | |||
/opt/bookkeeper/bin/bookkeeper shell metaformat |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need the /opt/bookkeeper
prefix? @zymap Please help take a look, thanks.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line 59 in 1e3efa1
&& mv bookkeeper-server-${BK_VERSION}/ /opt/bookkeeper/ \ |
mv bookkeeper-server-${BK_VERSION}/ /opt/bookkeeper/
Line 68 in 1e3efa1
ENTRYPOINT [ "/bin/bash", "/opt/bookkeeper/scripts/entrypoint.sh" ] |
bookkeeper/docker/scripts/entrypoint.sh
Line 58 in 1e3efa1
run_command /opt/bookkeeper/bin/bookkeeper bookie |
@@ -118,7 +118,7 @@ docker run -it --rm \ | |||
--network "bk_network" \ | |||
--env BK_zkServers=test_zookeeper:2181 \ | |||
apache/bookkeeper \ | |||
bookkeeper shell metaformat | |||
/opt/bookkeeper/bin/bookkeeper shell metaformat |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line 59 in 1e3efa1
&& mv bookkeeper-server-${BK_VERSION}/ /opt/bookkeeper/ \ |
mv bookkeeper-server-${BK_VERSION}/ /opt/bookkeeper/
Line 68 in 1e3efa1
ENTRYPOINT [ "/bin/bash", "/opt/bookkeeper/scripts/entrypoint.sh" ] |
bookkeeper/docker/scripts/entrypoint.sh
Line 58 in 1e3efa1
run_command /opt/bookkeeper/bin/bookkeeper bookie |
Descriptions of the changes in this PR: Fix Docker README.md
Descriptions of the changes in this PR:
Fix Docker README.md