Difference between revisions of "Docker"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) (Created page with "= Install = curl -sSL https://get.docker.com/ | sh docker pull python:2.7 docker run -i -t python:2.7 docker docker run -i -t python:2.7 bash docker ps -a docker pull l...") |
Rafahsolis (talk | contribs) |
||
| Line 9: | Line 9: | ||
docker search kali | docker search kali | ||
| + | docker images | ||
docker run -i -t linuxkonsult/kali-metasploit bash | docker run -i -t linuxkonsult/kali-metasploit bash | ||
Revision as of 13:36, 24 May 2017
Install
curl -sSL https://get.docker.com/ | sh
docker pull python:2.7 docker run -i -t python:2.7 docker docker run -i -t python:2.7 bash docker ps -a docker pull linuxkonsult/kali-metasploit docker search kali
docker images
docker run -i -t linuxkonsult/kali-metasploit bash
# Remove all containers
docker rm $(docker ps -aq)
# Remove incompletely built images:
docker images | grep none | awk '{print "docker rmi " $3;}' | sh