Bin Thanh
Bin Thanh

Reputation: 1

Cannot run Nessus service with docker compose?

I am using docker compose file to create an container Nessus with bind mount. It's work successfully with every folder in container exept /opt. (mount folder still work successfully but can't run the nessus service)

This is my docker compose file:

services:
 nessus_service:
  image: tenable/nessus:10.8.0-ubuntu
  restart: always
  container_name: nessus_container
  ports:
    - 3002:8834
  volumes:
    - /home/nessus:/opt

This is message when i docker compose up:

2024-10-03 07:07:41,681 INFO spawnerr: can't find command '/opt/nessus/sbin/nessus-service'
2024-10-03 07:07:41,681 INFO spawnerr: can't find command '/opt/scripts/configure_scanner.py'

My host is Oraclelinux 9.4, Docker version is 27.3.1 and Docker Compose version is 2.29.7

Upvotes: 0

Views: 35

Answers (0)

Related Questions