This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Alimentos e Bebidas | |
| Arte e Antiguidades | |
| Artigos Religiosos | |
| Assinaturas e Revistas | |
| Automóveis e Veículos | |
| Bebês e Cia | |
| Blu-Ray | |
| Brindes / Materiais Promocionais | |
| Brinquedos e Games | |
| Casa e Decoração |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Delete todos os containers | |
| docker rm -f $(docker ps -a -q) | |
| # Delete todas imagens | |
| docker rmi -f $(docker images -q) | |
| # Remove todas as imagens sem tag ex.: <none> | |
| docker rmi -f $(docker images | grep "^<none>" | awk "{print $3}") |