1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

add onlyoffice service

This commit is contained in:
Robin Appelman 2021-07-28 15:41:05 +02:00
commit b9bb8190cd
3 changed files with 145 additions and 1 deletions

View file

@ -100,6 +100,13 @@ async fn main() -> Result<()> {
.await?;
}
}
for service in &cloud.services {
for cmd in service.post_setup(&docker, &cloud.id).await? {
cloud
.exec(&mut docker, cmd.split(" ").collect(), false)
.await?;
}
}
}
}
HazeArgs::Stop { filter } => {