mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 09:04:12 +02:00
allow services to spawn more than one container
This commit is contained in:
parent
60e797545e
commit
e13f53e0e5
14 changed files with 34 additions and 34 deletions
|
|
@ -17,7 +17,7 @@ use petname::petname;
|
|||
use std::collections::HashMap;
|
||||
use std::fmt::Display;
|
||||
use std::fs;
|
||||
use std::io::{stdout, Cursor, Read, Write, Stdout};
|
||||
use std::io::{stdout, Cursor, Read, Stdout, Write};
|
||||
use std::iter::Peekable;
|
||||
use std::net::IpAddr;
|
||||
use std::os::unix::fs::MetadataExt;
|
||||
|
|
@ -311,7 +311,7 @@ impl Cloud {
|
|||
env.push(format!("BLACKFIRE_CLIENT_TOKEN={}", blackfire.client_token));
|
||||
}
|
||||
|
||||
let service_containers: Vec<Option<String>> = try_join_all(
|
||||
let service_containers: Vec<Vec<String>> = try_join_all(
|
||||
options
|
||||
.services
|
||||
.iter()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue