From 3780ab7c83055c75ec986767029aefc8318a99de Mon Sep 17 00:00:00 2001 From: Kim Oliver Drechsel Date: Tue, 30 Jul 2024 00:29:37 +0200 Subject: [PATCH] docs: update wiki (#17) * docs: update docs * docs: update docs --- dev.compose.yaml | 2 +- docs | 2 +- internal/config/deploy_config.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev.compose.yaml b/dev.compose.yaml index 06cb893..9a861df 100644 --- a/dev.compose.yaml +++ b/dev.compose.yaml @@ -10,7 +10,7 @@ services: environment: TZ: Europe/Berlin HTTP_PORT: 80 - LOG_LEVEL: debug + LOG_LEVEL: info # The connection to the docker socket requires the user to be either root # or in the docker group (the group id may vary and needs to match the docker socket permissions) # Use `user: root` to run the app as root, or use `group_add` to use the non-root user and add the docker group id to it diff --git a/docs b/docs index 61ebf87..6a4bc51 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 61ebf875a201200d4d5c7b214571b9fd1f1322fd +Subproject commit 6a4bc5165dd13f4cf03ad42747f8180de3bba6c6 diff --git a/internal/config/deploy_config.go b/internal/config/deploy_config.go index adbb7a3..9fb97ec 100644 --- a/internal/config/deploy_config.go +++ b/internal/config/deploy_config.go @@ -28,7 +28,7 @@ type DeployConfig struct { RemoveOrphans bool `yaml:"remove_orphans" default:"true"` // RemoveOrphans removes containers for services not defined in the Compose file ForceRecreate bool `yaml:"force_recreate" default:"false"` // ForceRecreate forces the recreation/redeployment of containers even if the configuration has not changed ForceImagePull bool `yaml:"force_image_pull" default:"false"` // ForceImagePull always pulls the latest version of the image tags you've specified if a newer version is available - Timeout int `yaml:"timeout" default:"300"` // Timeout is the time to wait for the deployment to finish in seconds before timing out + Timeout int `yaml:"timeout" default:"300"` // Timeout is the time in seconds to wait for the deployment to finish in seconds before timing out } // DefaultDeployConfig creates a DeployConfig with default values