Docker container console support
Opened this issue · 1 comments
RampantDespair commented
RampantDespair commented
I just did some testing and found something strange:
Using the code from https://pkg.go.dev/github.com/fatih/color
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...")
All the code snippets on your webpage, above the one displayed on my post, don't color docker's console