plasma-disassembler / plasma

Plasma is an interactive disassembler for x86/ARM/MIPS. It can generates indented pseudo-code with colored syntax.
GNU General Public License v3.0
3.05k stars 277 forks source link

Docker config #33

Closed netantho closed 9 years ago

netantho commented 9 years ago

Once this pull request merged, you can register the project on https://hub.docker.com so that the docker images get automatically built, to install and launch reverse then:

$ docker pull joelpx/reverse
$ docker run --rm -ti joelpx/reverse
>> load tests/nestedloop1.bin
>> x
(result)

If the pull request is merged but the project not registered on https://hub.docker.com:

$ docker build -t reverse:latest .
$ docker run --rm -ti joelpx/reverse
>> load tests/nestedloop1.bin
>> x
(result)
ghost commented 9 years ago

Thanks !