Posts by Vinicius de Santana • 3 points
3 posts
-
0
votes2
answers104
viewsA: Disable/delete Docker container marked with Restart: Always
The solution I found was to erase everything on Docker: sudo docker stop $(sudo docker ps -a -q) && sudo docker rm $(sudo docker ps -a -q) && sudo docker image rm $(sudo docker image…
-
0
votes2
answers104
viewsQ: Disable/delete Docker container marked with Restart: Always
I started a service on Docker with the image of the db icon, follow Docker: version: "3.1" services: mongo: image: 'mongo' container_name: mongoapp restart: always image: mongo volumes: -…
-
-2
votes1
answer272
viewsQ: Compare remote repositories
I have in git a code where my colleagues cloned and sent me pull requests, but I think there’s duplicate code between them. I added their repositories to my machine and want to compare a file from…