From 6ceacc68cc63b36443c5a37aac7136b5173b19cc Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 1 Sep 2023 16:07:46 +0200 Subject: [PATCH 1/2] more unique container name --- bootstrap/helpers/docker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/helpers/docker.php b/bootstrap/helpers/docker.php index 1094fb06f..b90f5ebd5 100644 --- a/bootstrap/helpers/docker.php +++ b/bootstrap/helpers/docker.php @@ -86,7 +86,7 @@ function getContainerStatus(Server $server, string $container_id, bool $all_data function generateApplicationContainerName(string $uuid, int $pull_request_id = 0) { - $now = now()->format('YmdHis'); + $now = now()->format('Hisu'); if ($pull_request_id !== 0 && $pull_request_id !== null) { return $uuid . '-pr-' . $pull_request_id . '-' . $now; } else { From 8675e1d13f7a11a3df85928242201687bd26189d Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 1 Sep 2023 16:09:03 +0200 Subject: [PATCH 2/2] version++ --- config/sentry.php | 2 +- config/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/sentry.php b/config/sentry.php index faf7aa6e3..f0ce8e18d 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ return [ // The release version of your application // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) - 'release' => '4.0.0-beta.22', + 'release' => '4.0.0-beta.23', 'server_name' => env('APP_ID', 'coolify'), // When left empty or `null` the Laravel environment will be used 'environment' => config('app.env'), diff --git a/config/version.php b/config/version.php index 06255e53e..a0d53aeca 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@