You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/docker/remote.rs
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -865,6 +865,10 @@ pub(crate) fn run(
865
865
866
866
let mount_prefix = MOUNT_PREFIX;
867
867
868
+
if options.in_docker(){
869
+
msg_info.warn("remote and docker-in-docker are unlikely to work together when using cross. remote cross uses data volumes, so docker-in-docker should not be required.")?;
870
+
}
871
+
868
872
// the logic is broken into the following steps
869
873
// 1. get our unique identifiers and cleanup from a previous run.
870
874
// 2. if not using persistent volumes, create a data volume
0 commit comments