-
Notifications
You must be signed in to change notification settings - Fork 435
Try SVF in Docker
Yulei Sui edited this page Oct 15, 2018
·
33 revisions
If you do not have access to a Mac or Linux OS or if you just want to try SVF without going through the installation steps in your local machine, you can do so on Docker with our Docker image.
Understand what is docker with the followings (optional):
- 12 mins video to understand docker
- docker commandlines
- creating docker files
- setting up a docker rep
docker login
3. Download Dockerfile to create an SVF image or Download SVF image from Docker Hub (https://hub.docker.com/r/rockysui/svf/)
Download image using this Dockerfile
docker build -t "svf" .
Download image from Docker Hub
docker pull rockysui/svf
docker run svf
docker container ls
docker start "your_container_name"
sudo docker tag [existing image name or ID] [Docker Hub username or organization]/[repository name]:[tag]
sudo docker tag svf rockysui/svf:latest
sudo docker push [Docker Hub username or organization name]/[repository name]:[tag]
sudo docker push rockysui/svf:latest
cd ~/svf
. ./setup
cd ~/svf/tests/cpu2000/
./run_andersen.sh
./run_flowsensitive.sh
cd ~/svf/tests
./runtest.h