WebEnh

.net7 mvc jquery bootstrap json 学习中 第一次学PHP,正在研究中。自学进行时... ... 我的博客 https://enhweb.github.io/ 不错的皮肤:darkgreentrip,iMetro_HD
  首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

C# 判断当前是否在容器中运行

Posted on 2024-05-27 23:10  WebEnh  阅读(27)  评论(0编辑  收藏  举报

可以在容器中执行命令,查看到信息

/egrep  '^1:.+(docker|lxc|kubepods)' /proc/1/cgroup

那么我们可以通过读取文件的方法,去分析是否在容器中运行。

代码如下

            /// <summary>
            /// 是否在容器中运行
            /// </summary>
            /// <returns></returns>
            private static async Task<bool> IsRunAtDocker()
            {
                //egrep  '^1:.+(docker|lxc|kubepods)' /proc/1/cgroup
                if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
                {
                    if (!System.IO.File.Exists("/proc/1/cgroup"))
                        return false;
                    try
                    {
                        bool has = false;
                        using (System.IO.StreamReader stream = System.IO.File.OpenText("/proc/1/cgroup"))
                        {
                            while (!stream.EndOfStream)
                            {
                                string s = await stream.ReadLineAsync();
                                string[] ss = s.Split(':');
                                if (s.Contains("name=systemd"))
                                {
                                    if (ss[2].Split('/').Contains("docker"))
                                    {
                                        has = true;
                                        break;
                                    }
                                }
                            }
                        }
                        return has;
                    }
                    catch { return false; }
                }
                else
                {
                    throw new PlatformNotSupportedException($"The current operating system is not supported({nameof(Machine)}).");
                }
            }