We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12ecc2b commit 1da9515Copy full SHA for 1da9515
1 file changed
docker-java/src/test/java/com/github/dockerjava/cmd/CopyArchiveToContainerCmdIT.java
@@ -6,6 +6,7 @@
6
import com.github.dockerjava.core.util.CompressArchiveUtil;
7
import com.github.dockerjava.utils.LogContainerTestCallback;
8
import org.apache.commons.io.FileUtils;
9
+import org.junit.Ignore;
10
import org.junit.Test;
11
import org.slf4j.Logger;
12
import org.slf4j.LoggerFactory;
@@ -148,6 +149,7 @@ public void copyFileWithExecutePermission() throws Exception {
148
149
assertThat(exitCode, equalTo(0));
150
}
151
152
+ @Ignore("Docker issue https://github.com/moby/moby/issues/46388")
153
@Test
154
public void copyFileWithUIDGID() throws Exception {
155
Path with = Files.createFile(Files.createTempDirectory("copyFileWithUIDGID").resolve("uidgid.with"));
0 commit comments