mirror of
https://github.com/648540858/wvp-GB28181-pro.git
synced 2026-05-06 15:22:55 +08:00
9 lines
170 B
Java
9 lines
170 B
Java
package com.genersoft.iot.vmp.utils;
|
|
|
|
public class EnvUtil {
|
|
|
|
public static boolean isDockerEnv() {
|
|
return "docker".equals(System.getenv("RUN_ENV"));
|
|
}
|
|
}
|