An open API service indexing awesome lists of open source software.

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

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
```