skip to Main Content

Hello I have the problem that I run a spiderfoot instance in a docker. Unfortunately it is not possible for me to protect them on my server with a login name and password. It works without Docker, I have created the directory with ./spiderfoot on my Linux server as described in the documentation with the file passwd.

As described in the documentation, I loaded the directory with git clone, built a container and started it. Creating the passwd inside the container was also unsuccessful. Thanks in advance for ideas.
here is the documentation used spiderfoot documetation.

2

Answers


  1. Chosen as BEST ANSWER

    Mounting a volume with the passwd file was the solution:

    -v passwd:/home/spiderfoot/.spiderfoot/passwd


  2. Try by creating the passwd file outside the container, and mounting it using volumes
    -v passwd:/home/spiderfoot/.spiderfoot/passwd

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search