security-dockerfiles/beef

How to change default password?

Closed this issue · 3 comments

How to change default password?

You can mount your own config.yaml inside container and start the image like so:

docker run -it -p 3000:3000 \
               -p 6789:6789 \
               -p 61985:61985 \
               -p 61986:61986 \
               -v your-config.yaml:/data/config.yaml \
               ilyaglow/beef -c /data/config.yaml

Also could be implemented inside entrypoint shell script and I will happily accept PR for this feature :)

Implemented in 6ddcfad