Skip to content

Instantly share code, notes, and snippets.

@lanmaster53
Created October 28, 2019 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lanmaster53/1dc805c0c7a512037ad67c76a5e0e251 to your computer and use it in GitHub Desktop.
Save lanmaster53/1dc805c0c7a512037ad67c76a5e0e251 to your computer and use it in GitHub Desktop.
version: '3.7'
services:
web:
build: .
image: recon-ng
container_name: recon-ng
ports:
- '5000:5000'
command: ./recon-web --host 0.0.0.0
volumes:
- .:/recon-ng
- ~/.recon-ng:/root/.recon-ng
depends_on:
- redis
worker:
image: recon-ng
command: rq worker -u redis://redis:6379/0 recon-tasks
volumes:
- .:/recon-ng
- ~/.recon-ng:/root/.recon-ng
environment:
- REDIS_URL=redis://redis:6379/0
depends_on:
- redis
redis:
image: redis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment