pl.domzal.junit.docker.rule.DockerRuleMountToBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-docker-rule Show documentation
Show all versions of junit-docker-rule Show documentation
JUnit Rule starting docker container in junit test case.
package pl.domzal.junit.docker.rule;
public interface DockerRuleMountToBuilder {
/**
* Mount to point.
*
* @param toPath Container target path
* @param mode Mount mode ('ro' or 'rw').
*/
DockerRuleBuilder to(String toPath, String mode);
/**
* Mount to point (mounting in default 'rw' mode).
*
* @param toPath Container target path
*/
DockerRuleBuilder to(String toPath);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy