We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a8df7c + d9b7b35 commit 797a969Copy full SHA for 797a969
main.go
@@ -21,6 +21,8 @@ func main() {
21
22
log.Init(logLevel)
23
24
+ docker.Init()
25
+
26
config.Load()
27
28
ENV = config.ENV
utils/docker/docker.go
@@ -13,6 +13,10 @@ import (
13
14
var stop chan os.Signal
15
16
+func Init() {
17
+ log.Info("Running ", os.Getenv("IMAGE_TAG"), " Image")
18
+}
19
20
func Run(main func()) chan os.Signal {
stop = make(chan os.Signal, 1)
signal.Notify(stop, syscall.SIGINT, syscall.SIGTERM)
0 commit comments