-
Notifications
You must be signed in to change notification settings - Fork 105
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
mirrord container docker check run #2933
base: main
Are you sure you want to change the base?
mirrord container docker check run #2933
Conversation
fb7fc9e
to
592f7b5
Compare
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.
Nits and docs.
@@ -57,19 +61,28 @@ impl RuntimeCommandBuilder { | |||
} | |||
} | |||
|
|||
pub fn add_volume<H, C>(&mut self, host_path: H, container_path: C) | |||
pub fn add_volume<H, C>(&mut self, host_path: H, container_path: C, readonly: bool) |
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 functions in this file to be pub
? Reason I'm not a fan of pub
all the things is that it doesn't warn you if they're not being used.
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.
is pub(super)
fine?
For mirrord container command check that the sidecar container is started after it is created when running with docker runtime
relevant for #2927