This is a bit of a strange one and I can't find answers anywhere else... if I have a Procfile.dev file with a basic Redis command in it such as redis: docker run --rm -it -p 6379:6379 redis:latest and run it via bin/dev the output from the Redis ascii art makes the logs unreable. If I remove the Redis command from the Procfile.dev it goes back to being neat and readable, below is an example of the messed up output:
Does anyone know how to make this look nice? I'm having to run docker outside the procfile atm because of this.
This is a Ruby on Rails 7 app running via bin/dev, if that is relevant.

If possible try running the docker container in non interactive mode:
Note the removal of the
-itflag.It will cause redis to not output the logo ascii art.
The reasoning behind the solution are the comments defined for the configuration property
always-show-logothat you can see inredis.conf:Similar issues has been reported for the service, like this one related to
syslog.