DiscordChatExporter/DiscordChatExporter.Core/Utils/Docker.cs
2023-12-29 00:17:11 +02:00

9 lines
232 B
C#

using System;
namespace DiscordChatExporter.Core.Utils;
public static class Docker
{
public static bool IsRunningInContainer { get; } =
Environment.GetEnvironmentVariable("DOTNET_RUNNING_IN_CONTAINER") == "true";
}