diff --git a/docs/images/docker-sealskin.md b/docs/images/docker-sealskin.md index 86e041e7b5..5082bc5c5f 100644 --- a/docs/images/docker-sealskin.md +++ b/docs/images/docker-sealskin.md @@ -102,7 +102,7 @@ If you wish to use your own administrator key or provide a valid SSL certificate * **To use a custom Server E2EE Key:** * Place your RSA private key at this location. This is the core key for the API's end-to-end encryption and validates the server when a user sets the servers public key when configuring the extension. * **Path:** `/path/to/config/ssl/server_key.pem` - * **Generation Command:** `openssl genpkey -algorithm RSA -out /path/to/config/ssl/server_key.pem -pkeyopt rsa_keygen_bits:4096` + * **Generation Command:** `openssl genpkey -algorithm RSA -out /path/to/config/ssl/server_key.pem -pkeyopt rsa_keygen_bits:2048` * To obtain the corresponding public key (which is needed by the browser extension), you can extract it from your private key with this command: * **Extraction Command:** `openssl rsa -in server_key.pem -pubout` @@ -112,7 +112,7 @@ To help you get started creating a container from this image you can either use !!! info - Unless a parameter is flaged as 'optional', it is *mandatory* and a value must be provided. + Unless a parameter is flagged as 'optional', it is *mandatory* and a value must be provided. ### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) @@ -390,13 +390,14 @@ To help with development, we generate this dependency graph. svc-sealskin -> legacy-services } Base Images: { - "baseimage-alpine:3.22" + "baseimage-alpine:3.23" } "sealskin:latest" <- Base Images ``` ## Versions +* **11.02.26:** - Rebase to Alpine 3.23. * **19.01.26:** - Fix init race condition. * **17.01.26:** - Update docs to remove network and port requirement, add link to Firefox add on. * **08.01.26:** - Improve permission fixing.