1.On the Turbo server box, stand up the Turbo Service with docker:
```
docker run -p 55155:55155 git.zephyr-software.com:4567/allzp/turbo/turbo:latest
```
Note that the `-p 55155:55155` parameter tells Docker to expose the Turbo port so that the Turbo CLI can connect. You may always want to use `--restart unless-stopped` flag to ensure that the container is restarted in the event that your system restarts (e.g., due to a power loss). You may also wish to use `-d` to detach your shell from the docker instance.
On the fuzzing box:
2. If you wish to have a custom AFL install, install AFL as noted above. Otherwise, step 3 will install AFL automatically.