-
Notifications
You must be signed in to change notification settings - Fork 489
Docker notes
Dan Guido edited this page Nov 3, 2018
·
11 revisions
Pre-built Manticore docker images are available on Docker Hub. Consider using Docker if you're having trouble with pip.
docker pull trailofbits/manticore
docker run -it -v `pwd`/examples:/home/manticore/examples manticore
docker rm (docker ps -a -q) # delete all containers
docker images # view images
Docker Hub automatically detects changes on Github and builds new images. It builds two sets of images:
- It builds the latest master branch to a docker tag named
master - It builds the latest git tag that matches
/^[0-9.]+$/(version number) to a docker tag namedlatest
Users will get the latest tag when they run docker pull trailofbits/manticore
Ensure tag names only contain the version with no other characters (e.g. v0.2.1) so the regex will match.
Run this command from the project root if you want to build a new Docker container from the included Dockerfile:
docker build -t manticore . # from tree root, build container from Dockerfile