Skip to content

Commit

Permalink
Merge pull request tighten#321 from tonysm/fix/tm-traefik-default-con…
Browse files Browse the repository at this point in the history
…fig-dir

Fix the default config_dir value for Traefik
  • Loading branch information
tonysm authored Jun 16, 2023
2 parents 4721686 + a92dac9 commit 2631ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Services/Traefik.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function __construct(Shell $shell, Environment $environment, Docker $dock
}, $this->defaultPrompts);

$this->prompts = array_map(function ($prompt) use ($home) {
if ($prompt['shortname'] === 'config' && ! empty($home)) {
if ($prompt['shortname'] === 'config_dir' && ! empty($home)) {
$prompt['default'] = "{$home}/.config/traefik";
}

Expand Down

0 comments on commit 2631ddb

Please sign in to comment.