一、安装python3和docker
1 brew install python3 2 brew cask install docker 3 sudo pip3 install docker-compose
二、运行docker
3、安装vulhub
1 git clone https://github.com/vulhub/vulhub.git
4、测试:
1 # 进入某一个漏洞/环境的目录 2 cd nginx_php5_mysql 3 4 # 自动化编译环境 5 docker-compose build 6 7 # 启动整个环境 8 docker-compose up -d 9 10 # 删除运行环境 11 docker-compose down