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

update dependencies

This commit is contained in:
Robin Appelman 2023-05-04 18:42:56 +02:00
commit f8253fb68e
13 changed files with 537 additions and 222 deletions

View file

@ -37,6 +37,7 @@ impl ServiceTrait for ClamIcap {
pull_image(docker, image).await?;
let options = Some(CreateContainerOptions {
name: self.container_name(cloud_id),
..CreateContainerOptions::default()
});
let config = Config {
image: Some(image),

View file

@ -37,6 +37,7 @@ impl ServiceTrait for Kaspersky {
pull_image(docker, image).await?;
let options = Some(CreateContainerOptions {
name: self.container_name(cloud_id),
..CreateContainerOptions::default()
});
let config = Config {
image: Some(image),
@ -137,6 +138,7 @@ impl ServiceTrait for KasperskyIcap {
pull_image(docker, image).await?;
let options = Some(CreateContainerOptions {
name: self.container_name(cloud_id),
..CreateContainerOptions::default()
});
let config = Config {
image: Some(image),

View file

@ -32,6 +32,7 @@ impl ServiceTrait for LDAP {
pull_image(docker, image).await?;
let options = Some(CreateContainerOptions {
name: self.container_name(cloud_id),
..CreateContainerOptions::default()
});
let config = Config {
image: Some(image),
@ -100,6 +101,7 @@ impl ServiceTrait for LDAPAdmin {
pull_image(docker, image).await?;
let options = Some(CreateContainerOptions {
name: self.container_name(cloud_id),
..CreateContainerOptions::default()
});
let config = Config {
image: Some(image),

View file

@ -75,6 +75,7 @@ impl ServiceTrait for ObjectStore {
pull_image(docker, self.image()).await?;
let options = Some(CreateContainerOptions {
name: format!("{}-object", cloud_id),
..CreateContainerOptions::default()
});
let config = Config {
image: Some(self.image()),

View file

@ -33,6 +33,7 @@ impl ServiceTrait for Office {
let container_id = self.container_name(cloud_id);
let options = Some(CreateContainerOptions {
name: container_id.clone(),
..CreateContainerOptions::default()
});
let mut env = vec!["extra_params=--o:ssl.enable=false --o:ssl.termination=true"];

View file

@ -32,6 +32,7 @@ impl ServiceTrait for OnlyOffice {
pull_image(docker, image).await?;
let options = Some(CreateContainerOptions {
name: self.container_name(cloud_id),
..CreateContainerOptions::default()
});
let config = Config {
image: Some(image),

View file

@ -31,6 +31,7 @@ impl ServiceTrait for NotifyPush {
pull_image(docker, image).await?;
let options = Some(CreateContainerOptions {
name: self.container_name(cloud_id),
..CreateContainerOptions::default()
});
let config = Config {
image: Some(image),

View file

@ -28,6 +28,7 @@ impl ServiceTrait for Smb {
pull_image(docker, image).await?;
let options = Some(CreateContainerOptions {
name: self.container_name(cloud_id),
..CreateContainerOptions::default()
});
let config = Config {
image: Some(image),