mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 04:21:14 +00:00
14 lines
335 B
YAML
14 lines
335 B
YAML
|
version: "3.7"
|
||
|
services:
|
||
|
nessus:
|
||
|
hostname: nessus
|
||
|
container_name: nessus
|
||
|
image: tenableofficial/nessus:latest
|
||
|
ports:
|
||
|
- 8834:8834/tcp # WEB UI
|
||
|
environment:
|
||
|
- ACTIVATION_CODE=XXX-XXXXX-XXXXX-XXXX # change this
|
||
|
- USERNAME=nessus
|
||
|
- PASSWORD=MyVeryStrongNessusLoginPassword
|
||
|
restart: always
|