mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 17:14:08 +02:00
bumb dependencies
This commit is contained in:
parent
cc2a5ca899
commit
33e69b7604
3 changed files with 249 additions and 309 deletions
13
src/cloud.rs
13
src/cloud.rs
|
|
@ -236,7 +236,8 @@ impl Cloud {
|
|||
.ok_or(Report::msg("Network has no ip info"))?
|
||||
.first()
|
||||
.ok_or(Report::msg("Network has no ip info"))?
|
||||
.get("Gateway")
|
||||
.gateway
|
||||
.as_deref()
|
||||
.ok_or(Report::msg("Network has no ip info"))?;
|
||||
|
||||
let mut containers = Vec::new();
|
||||
|
|
@ -294,15 +295,7 @@ impl Cloud {
|
|||
|
||||
let container = options
|
||||
.php
|
||||
.spawn(
|
||||
docker,
|
||||
&id,
|
||||
env,
|
||||
&options.db,
|
||||
&network,
|
||||
volumes,
|
||||
gateway.as_str(),
|
||||
)
|
||||
.spawn(docker, &id, env, &options.db, &network, volumes, gateway)
|
||||
.await
|
||||
.wrap_err("Failed to start php container")?;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue