I have five services, which all get assigned a random color on docker-compose up at the moment. The problem is, one color is the exact same color as the background of powershell, which I use to up the services. Can I assign a color to each service in my docker-compose?
Asked
Active
Viewed 757 times
2
1 Answers
1
There's an old issue requesting this feature in docker-compose, which was (unfortunately?) rejected.
If the main issue is that the color clashes with your background, you could use the --no-color
option to get a monochrome output. It's not great, but at least it would stop clashing with your background.

Mureinik
- 297,002
- 52
- 306
- 350
-
Yeah I had seen that, I was hoping something had been added in since. no color is a good point, I'll probably switch to that. Cheers – be2213444 Jun 01 '21 at 10:27