Skip to content

Instantly share code, notes, and snippets.

@BoredHackerBlog
Created January 9, 2022 19:31
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 BoredHackerBlog/0d1214c0e150bea19f9bd820e73b933b to your computer and use it in GitHub Desktop.
Save BoredHackerBlog/0d1214c0e150bea19f9bd820e73b933b to your computer and use it in GitHub Desktop.
openvas docker-compose
#taken from here: https://github.com/immauss/openvas/blob/master/compose/docker-compose.yml
#as of jan 9th 2022, it works fine. takes some time to download feeds initially.
version: "3"
services:
openvas:
ports:
- "8080:9392"
environment:
- "PASSWORD=admin"
- "USERNAME=admin"
- "RELAYHOST=172.17.0.1"
- "SMTPPORT=25"
- "REDISDBS=512"
- "QUIET=false"
- "NEWDB=false"
- "SKIPSYNC=false"
- "RESTORE=false"
- "DEBUG=false"
- "HTTPS=true"
volumes:
- "openvas:/data"
container_name: openvas
image: immauss/openvas
volumes:
openvas:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment