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 22, 2023
1 parent abd17fe commit fa374f3
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 9 deletions.
42 changes: 35 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 @@ -40,6 +40,7 @@ shuttle-service = { path = "service", version = "0.12.0" }
anyhow = "1.0.66"
async-trait = "0.1.58"
axum = { version = "0.6.0", default-features = false }
bollard = "0.14.0"
cargo = "0.69.0"
cargo_metadata = "0.15.3"
chrono = { version = "0.4.23", default-features = false }
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 @@ -11,7 +11,7 @@ async-trait = { workspace = true }
axum = { workspace = true, features = [ "default", "headers" ] }
axum-server = { version = "0.4.4", features = [ "tls-rustls" ] }
base64 = "0.13.1"
bollard = "0.13.0"
bollard = { workspace = true }
chrono = { workspace = true }
clap = { workspace = true }
fqdn = "0.2.3"
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 fa374f3

Please sign in to comment.