Slightly better naming

This commit is contained in:
Tyrrrz
2023-12-29 00:17:11 +02:00
parent a2c5d2e2dd
commit 8e36002ae7
2 changed files with 2 additions and 2 deletions

View File

@@ -4,6 +4,6 @@ namespace DiscordChatExporter.Core.Utils;
public static class Docker
{
public static bool IsRunningInDocker { get; } =
public static bool IsRunningInContainer { get; } =
Environment.GetEnvironmentVariable("DOTNET_RUNNING_IN_CONTAINER") == "true";
}