Skip to content

Instantly share code, notes, and snippets.

@maccevedor
Created October 30, 2019 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maccevedor/387c5289b16555a55eb9968768cad107 to your computer and use it in GitHub Desktop.
Save maccevedor/387c5289b16555a55eb9968768cad107 to your computer and use it in GitHub Desktop.
Task for visual code
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Remove Image Docker",
"type": "shell",
"command": "docker rmi -f $(docker images -a -q)"
},
{
"label": "Remove Vendor",
"type": "shell",
"command": "rm -rf vendor"
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment