https://github.com/ryarnyah/r2docker
Docker image for radare
https://github.com/ryarnyah/r2docker
Last synced: 5 months ago
JSON representation
Docker image for radare
- Host: GitHub
- URL: https://github.com/ryarnyah/r2docker
- Owner: ryarnyah
- Created: 2017-03-20T19:48:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-20T21:00:54.000Z (over 9 years ago)
- Last Synced: 2025-04-06T02:36:45.459Z (about 1 year ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# R2docker fork from radare/radare2
This image is a fork from origin r2docker. It was created to shrink initial image and to limit number of layers.
Build docker image with:
```
$ docker build -t r2docker:1.3.0 .
```
Run the docker image:
```
$ docker images
$ export DOCKER_IMAGE_ID=$(docker images --format '{{.ID}}' -f 'label=r2docker')
$ docker run -ti r2docker:1.3.0
```
Once you quit the bash session get the container id with:
```
$ docker ps -a | grep bash
```
To get into that shell again just type:
```
$ docker start -ai
```
If you willing to debug a program within Docker, you should run it in privileged mode:
```
$ docker run -it --cap-add=SYS_PTRACE --cap-drop=ALL radare/radare2
$ r2 -d /bin/true
```