rich.Spinner and docker compose up #2696
Answered
by
RuiLoureiro
RuiLoureiro
asked this question in
Q&A
-
I have the following code: from rich.console import Console
import time
console = Console(force_terminal=True, force_interactive=True)
with console.status('my-spinner'):
while True:
console.print('123')
time.sleep(1) I'm running it inside docker, but am getting different outputs depending on how I run it:
Is this expected behavior? Is there a way to make |
Beta Was this translation helpful? Give feedback.
Answered by
RuiLoureiro
Dec 9, 2022
Replies: 1 comment
-
After further investigation, I found this github issue on docker-compose: docker/compose#3081 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
RuiLoureiro
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After further investigation, I found this github issue on docker-compose: docker/compose#3081
So this is expected behavior