Percona Docker Create a key

Hello
I’m not able to create a key in order to enable the encryption,
since I have pulled the image and run the container.
Do I have to modify the docker file or there is another solution?

1 Like

Hi @matthewb thanks for your answer but I’m talking about mongodb, since we are in the right place I assume.
Anyway I pulled the image from Running Percona Server for MongoDB in a Docker Container — Percona Server for MongoDB 5.0 Documentation
but now I have to enable the encryption and I don’t know how to set the key into the container

1 Like

I’m sorry. You are right, I was not paying attention to the forum category. I deleted my reply.

You can set the config options directly in mongo’s config file:
https://www.percona.com/doc/percona-server-for-mongodb/LATEST/data_at_rest_encryption.html

Or pass the options directly to mongo when launching the container:

You can pass arbitrary command line options to the server by appending them to the run command :

docker run --name my-container-name -d percona/percona-server-mongodb --option1=value --option2=value

1 Like