From 6ceacc68cc63b36443c5a37aac7136b5173b19cc Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 1 Sep 2023 16:07:46 +0200 Subject: [PATCH] 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 {