Compose-Examples/examples/nessus/docker-compose.yml

16 lines
350 B
YAML
Raw Normal View History

2023-02-15 21:45:31 +00:00
services:
2023-02-15 21:45:31 +00:00
nessus:
image: tenableofficial/nessus:latest
container_name: nessus
hostname: nessus
2023-02-15 21:45:31 +00:00
ports:
- 8834:8834/tcp # WEB UI
expose:
- 8834
2023-02-15 21:45:31 +00:00
environment:
- ACTIVATION_CODE=XXX-XXXXX-XXXXX-XXXX # change this
- USERNAME=nessus
- PASSWORD=MyVeryStrongNessusLoginPassword
restart: always