I get this error when I build and publish my docker image then I try to pull and run it locally or on a vm with coolify. I have added my env as github secrets for the builf process but I still get the same error, even after adding the env variables to coolify. It suggested I neeet to comment out godotenv.Load(), but still same issue. Anyone can help?
func init() { if err := godotenv.Load(); err != nil { log.Fatal(err) } }
I get this error when I build and publish my docker image then I try to pull and run it locally or on a vm with coolify. I have added my env as github secrets for the builf process but I still get the same error, even after adding the env variables to coolify. It suggested I neeet to comment out
godotenv.Load(), but still same issue. Anyone can help?func init() { if err := godotenv.Load(); err != nil { log.Fatal(err) } }