1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-04 01:24:09 +02:00

allow services to spawn more than one container

This commit is contained in:
Robin Appelman 2024-07-03 15:21:35 +02:00
commit e13f53e0e5
14 changed files with 34 additions and 34 deletions

View file

@ -26,7 +26,7 @@ impl ServiceTrait for NotifyPush {
cloud_id: &str,
network: &str,
config: &HazeConfig,
) -> Result<Option<String>> {
) -> Result<Vec<String>> {
let image = "icewind1991/notify_push";
pull_image(docker, image).await?;
let options = Some(CreateContainerOptions {
@ -68,7 +68,7 @@ impl ServiceTrait for NotifyPush {
.await
.into_diagnostic()?
.id;
Ok(Some(id))
Ok(vec![id])
}
fn container_name(&self, cloud_id: &str) -> Option<String> {