Skip to content

Commit 58fb72f

Browse files
committed
Fix pre-build Docker image names with Podman.
1 parent 6cd09b3 commit 58fb72f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changes/945.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "fixed",
3+
"description": "fix pre-build hook image naming with podman",
4+
"issues": [944]
5+
}

src/docker/custom.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use crate::{errors::*, file, CommandExt, ToUtf8};
99

1010
use super::{image_name, parse_docker_opts, path_hash};
1111

12-
pub const CROSS_CUSTOM_DOCKERFILE_IMAGE_PREFIX: &str = "cross-custom-";
12+
pub const CROSS_CUSTOM_DOCKERFILE_IMAGE_PREFIX: &str = "localhost/cross-rs/cross-custom-";
1313

1414
#[derive(Debug, PartialEq, Eq)]
1515
pub enum Dockerfile<'a> {

0 commit comments

Comments
 (0)