iamthad
iamthad
In case it helps, this is a minimal working example of enabling the support: ```python import platform if platform.system() == 'Windows': from ctypes import windll kernel32 = windll.kernel32 try: kernel32.SetConsoleMode(kernel32.GetStdHandle(-11),...
I, too, was confused that I can `docker compose exec` in containers created by `docker compose run` but I cannot `docker compose cp` to them.
I realized today, that in the spirit of https://xkcd.com/1172/, this will be a breaking change for those who were relying on the old behavior. Their APIs will start requiring global...