0

when I'm executing a command in docker to get container bash, I'm faced with such a message and I can not enter any commands

docker exec -u 0  -t  my_local_redis ash

and error is:

/data # ^[[2;9R

but when I run the below command it seems ok

docker exec -u 0  -t  my_local_redis ls

1 Answers1

1

Try using interactive terminal mode docker exec -u 0 -it my_local_redis ash

Ashin Shakya
  • 690
  • 6
  • 9