google / fuzzbench

FuzzBench - Fuzzer benchmarking as a service.

Home Page:https://google.github.io/fuzzbench/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Running several experiments at one time

DKay7 opened this issue · comments

I've got a docker error while trying to run several experiments

INFO:root:Starting dispatcher with container name: dispatcher-container
docker: Error response from daemon: Conflict. The container name "/dispatcher-container" is already in use by container "cc2efebfc84f3d92bcd3503e33504c9bdb4d1e4f99e8d0307ce57386d9f7c062". You have to remove (or rename) that container to be able to reuse that name.
See 'docker run --help'.

After a bit of research, I found out that container_name is hardcoded to dispatcher-container:

container_name = 'dispatcher-container'

And that causes docker to produce an error because container with that name is already in use.

Is there any way to run several experiments at one time? Thanks.