hello.
I am currently trying to setup a dragonfly docker container on my server, which can be connected to from the outside world, with auth of course.
docker run --ulimit memlock=-1 --name dragonfly -d -p 0.0.0.0:6379:6379 --restart=always docker.dragonflydb.io/dragonflydb/dragonfly
This is the command I am running to start the docker container. However, it doesn’t have any auth on it.
Is the only way I can add auth by going into my docker containers file system and changing the config file? Or is there a way I can do this by passing in some args to the docker run command?