mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
11 lines
159 B
Go
11 lines
159 B
Go
package helper
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/spf13/cast"
|
|
)
|
|
|
|
func InNginxUIOfficialDocker() bool {
|
|
return cast.ToBool(os.Getenv("NGINX_UI_OFFICIAL_DOCKER"))
|
|
}
|