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

https://github.com/parabolic/openvas-docker

Dockerized openvas installation
https://github.com/parabolic/openvas-docker

Last synced: 2 months ago
JSON representation

Dockerized openvas installation

Awesome Lists containing this project

README

        

## Dockerized openvas installation

### Description

This dockerfile uses the following ppa ppa:mrazavi/openvas to get openvas.

Some packages are installed beforehand both for openvas and for debbuging.

### Instructions

**clone the repo**
```
git clone [email protected]:parabolic/openvas-docker.git
```
**cd into the repo**
```
cd openvas-docker
```
**build the image**
```
docker build . -t openvas
```
**run the image**
```
docker run -d -it -p 443:443 openvas
```
**access openvas**
```
https://localhost
username: admin
password: admin
```

**all at once for copy paste**
```
git clone [email protected]:parabolic/openvas-docker.git
cd openvas-docker
docker build . -t openvas
docker run -d -it -p 443:443 openvas
```