kopia lustrzana https://github.com/Haxxnet/Compose-Examples
14 wiersze
335 B
YAML
14 wiersze
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
|