Skip to content

Commit c9c0eee

Browse files
committed
Pin bitcoin docker image
1 parent 4274628 commit c9c0eee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/config/bitcoin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ impl Default for BitcoinConfig {
2929
.into_path(),
3030
extra_args: Vec::new(),
3131
network: Network::Regtest,
32-
docker_image: Some("bitcoin/bitcoin:latest".to_string()),
32+
docker_image: Some("bitcoin/bitcoin:27.1".to_string()),
3333
env: Vec::new(),
3434
idx: 0,
3535
}

src/config/docker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ impl From<&BitcoinConfig> for DockerConfig {
3434
image: v
3535
.docker_image
3636
.clone()
37-
.unwrap_or_else(|| "bitcoin/bitcoin:latest".to_string()),
37+
.unwrap_or_else(|| "bitcoin/bitcoin:27.1".to_string()),
3838
cmd: args,
3939
log_path: v.data_dir.join("regtest").join("debug.log"),
4040
volume: VolumeConfig {

0 commit comments

Comments
 (0)