Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add instructions for Docker installation and usage #257

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<pre>
Ubuntu 14.04 and 16.04 supported out of the box.
18.04 is having a problem with building QEMU
18.04 and 20.x is having a problem with building QEMU
See forked QEMU source at https://github.com/geohot/qemu/tree/qira to fix.

Non Linux hosts may run the rest of QIRA, but cannot run the QEMU tracer.
Expand All @@ -32,6 +32,21 @@ cd qira/
./install.sh
</pre>

### Docker
<pre>
cd ~/
git clone https://github.com/geohot/qira.git
cd qira/docker
./build.sh
</pre>

Run: <pre>sudo docker run -p 3302:3302 -it qira bash
qira _target_</pre>

Then, connect to __localhost:3002__

If you want to copy a file from your filesystem to the container launch: <pre>sudo docker cp _source_ _container_name_:_path_ </pre>

## Installation Extras

* ./fetchlibs.sh will fetch the libraries for i386, armhf, armel, aarch64, mips, mipsel, and ppc
Expand Down