diff --git a/Docker Images/bluesky-pds.md b/Docker Images/bluesky-pds.md index 17712f8..98862ef 100644 --- a/Docker Images/bluesky-pds.md +++ b/Docker Images/bluesky-pds.md @@ -78,9 +78,11 @@ I do not run this, but it should be possible. ![[standalone]] ### Unraid + While I do not use Unraid, a [user on Reddit](https://www.reddit.com/r/selfhosted/comments/1i4r4yb/comment/m7y561x/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button) has added this project to the [Unraid App store](https://unraid.net/community/apps?q=bluesky#r). I won't be providing any meaningful support it. Unraid does not include the `xxd` package. You'll need another Linux machine for that. I made [[Generate PDS_PLC_ROTATION_KEY|some instructions]] for using a temporary alpine container if that helps. + ### Running Commands Nothing has changed in this department, other than not needing `sudo`. The commands are the same as the upstream project. Such as diff --git a/Docker Images/quartz/Generate PDS_PLC_ROTATION_KEY.md b/Docker Images/quartz/Generate PDS_PLC_ROTATION_KEY.md index 88e2083..8479e61 100644 --- a/Docker Images/quartz/Generate PDS_PLC_ROTATION_KEY.md +++ b/Docker Images/quartz/Generate PDS_PLC_ROTATION_KEY.md @@ -3,7 +3,8 @@ title: PDS_PLC_ROTATION_KEY in a container draft: false date: 2025-01-19 --- - Unraid does not come with the `xxd` command installed. There used to be a package called NerdTools that I used to use but it looks like it was removed. I do not recall if you can use `docker run` in Unraid, but these commands can be used. A quick google indicates [windows users can use the docker cli](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce). + +Unraid does not come with the `xxd` command installed. There used to be a package called NerdTools that I used to use but it looks like it was removed. I do not recall if you can use `docker run` in Unraid, but these commands can be used. A quick google indicates [windows users can use the docker cli](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce). ```bash # on host @@ -14,4 +15,4 @@ apk add xxd openssl # everything after this is one command echo PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX: $(openssl ecparam --name secp256k1 --genkey --noout --outform DER | tail -c +8 | head -c 32 | xxd --plain --cols 32) -``` \ No newline at end of file +```