Skip to content

Commit

Permalink
chore: Update bollard to v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kierendavies committed Mar 24, 2023
1 parent c036c6a commit e19e589
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 9 deletions.
41 changes: 34 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ anyhow = "1.0.66"
async-trait = "0.1.58"
axum = { version = "0.6.0", default-features = false }
base64 = "0.13.1"
bollard = "0.14.0"
bytes = "1.3.0"
cap-std = "1.0.2"
cargo = "0.69.0"
Expand Down
2 changes: 1 addition & 1 deletion cargo-shuttle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://www.shuttle.rs"
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
bollard = "0.13.0"
bollard = { workspace = true }
cargo = { workspace = true }
cargo-edit = { version = "0.11.9", features = ["cli"] }
cargo_metadata = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions cargo-shuttle/src/provisioner_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ impl LocalProvisioner {
trace!("will create DB container {container_name}");
let options = Some(CreateContainerOptions {
name: container_name.clone(),
platform: None,
});
let mut port_bindings = HashMap::new();
let host_port = pick_unused_port().expect("system to have a free port");
Expand Down
2 changes: 1 addition & 1 deletion gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ async-trait = { workspace = true }
axum = { workspace = true, features = ["default", "headers"] }
axum-server = { version = "0.4.4", features = ["tls-rustls"] }
base64 = { workspace = true }
bollard = "0.13.0"
bollard = "0.14.0"
chrono = { workspace = true }
clap = { workspace = true }
fqdn = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions gateway/src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@ impl ProjectCreating {

let create_container_options = CreateContainerOptions {
name: self.container_name(ctx),
platform: None,
};

let container_config = self
Expand Down

0 comments on commit e19e589

Please sign in to comment.