Posts by Gustavo Vergilio • 91 points
2 posts
-
1
votes1
answer44
viewsQ: How to copy files from a Docker container to your local desktop
I am trying to copy a file from inside a Docker container using the following command: docker cp container_id:app.txt ~/desktop/app.txt But it returns me the following error: invalid output path:…
dockerasked Gustavo Vergilio 91 -
7
votes2
answers1109
viewsQ: Do if by denying a boolean in Python
How do I make for the if check a boolean negation, as below: self.senha = Gugu_0099 for i in self.senha: if i.isdigit() and i.isalpha(): total_simbolos += 1 I want you to get into this if if the…