You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c:=color.New(color.FgCyan)
c.Println("Prints cyan text")
c.DisableColor()
c.Println("This is printed without any color")
c.EnableColor()
c.Println("This prints again cyan...")
I get the following result:
All the code snippets on your webpage, above the one displayed on my post, don't color docker's console
Does color support coloring docker's container console?
Using something like this
color.Green("Database Connected!")
, colors the output on window's terminal, but not docker's.Must I do something special to make color work with Docker?
Other packages like GORM are capable of doing it;
The text was updated successfully, but these errors were encountered: