mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 17:14:08 +02:00
update dependencies
This commit is contained in:
parent
566753aafc
commit
f8253fb68e
13 changed files with 537 additions and 222 deletions
|
|
@ -197,6 +197,7 @@ impl Database {
|
|||
}
|
||||
let options = Some(CreateContainerOptions {
|
||||
name: format!("{}-db", cloud_id),
|
||||
..CreateContainerOptions::default()
|
||||
});
|
||||
let config = Config {
|
||||
image: Some(self.image()),
|
||||
|
|
|
|||
|
|
@ -139,11 +139,7 @@ pub fn default_mappings<'a>() -> impl IntoIterator<Item = Mapping<'a>> {
|
|||
"composer/cache",
|
||||
"/home/haze/.composer/cache",
|
||||
),
|
||||
Mapping::new(
|
||||
GlobalWorkDir,
|
||||
"node_modules",
|
||||
"/var/www/html/node_modules",
|
||||
),
|
||||
Mapping::new(GlobalWorkDir, "node_modules", "/var/www/html/node_modules"),
|
||||
Mapping::new(
|
||||
GlobalWorkDir,
|
||||
"phpunit-cache",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ impl PhpVersion {
|
|||
pull_image(docker, self.image()).await?;
|
||||
let options = Some(CreateContainerOptions {
|
||||
name: id.to_string(),
|
||||
..CreateContainerOptions::default()
|
||||
});
|
||||
let config = Config {
|
||||
image: Some(self.image().to_string()),
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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()),
|
||||
|
|
|
|||
|
|
@ -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"];
|
||||
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue