https://github.com/dobin/ffw-docker
Docker image of FFW
https://github.com/dobin/ffw-docker
Last synced: 4 months ago
JSON representation
Docker image of FFW
- Host: GitHub
- URL: https://github.com/dobin/ffw-docker
- Owner: dobin
- Created: 2018-04-03T12:33:58.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-17T08:27:24.000Z (about 8 years ago)
- Last Synced: 2025-07-24T12:45:39.787Z (11 months ago)
- Size: 4.88 KB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker-FFW
A dockerized version of FFW.
## Whats inside?
* FFW
* Radamsa
* Honggfuzz
## Howto
Build:
```
docker build -t ffw .
```
## Named container
Start the container, name it `ffw1`:
```
docker run -ti --privileged -lxc-conf="aa_profile=unconfined" --name ffw1 ffw
```
If you exit via CTRL-D, and want to continue later, just do:
```
docker start ffw1
docker attach ffw1
```
Data will persist.
## Port forward
```
docker run -ti --privileged -lxc-conf="aa_profile=unconfined" -p 10000:10000 --name ffw1 ffw
```