mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-04 17:44:11 +02:00
add s3 TLS option
This commit is contained in:
parent
b3a1e80f6f
commit
7e54fbd89f
8 changed files with 203 additions and 16 deletions
16
src/cloud.rs
16
src/cloud.rs
|
|
@ -498,6 +498,22 @@ impl Cloud {
|
|||
}
|
||||
};
|
||||
|
||||
for pre_setup in options
|
||||
.services
|
||||
.iter()
|
||||
.flat_map(|service| service.pre_setup(docker, &id, config).into_iter().flatten())
|
||||
{
|
||||
exec(
|
||||
docker,
|
||||
&container,
|
||||
&uid.to_string(),
|
||||
pre_setup,
|
||||
vec!["NC_IS_CONFIG_READ_ONLY=1"],
|
||||
Some(stdout()),
|
||||
)
|
||||
.await?;
|
||||
}
|
||||
|
||||
containers.push(container);
|
||||
|
||||
let options_clone = options.clone();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue