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
- Host: GitHub
- URL: https://github.com/parabolic/openvas-docker
- Owner: parabolic
- License: gpl-3.0
- Created: 2016-10-26T10:31:28.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-26T10:44:51.000Z (over 8 years ago)
- Last Synced: 2025-03-22T21:01:44.786Z (3 months ago)
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```