Compare commits
2 commits
7add0dbfd2
...
bdedac454c
Author | SHA1 | Date | |
---|---|---|---|
bdedac454c | |||
b1857110b6 |
3 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -17,7 +17,7 @@ docker pull code.modernleft.org/gravityfargo/quartz-docker:v4.4.0
|
|||
|
||||
---
|
||||
|
||||
This project runs Quartz v4.4.0, a fast, batteries-included static site generator, inside a Docker container. It transforms Markdown content into a fully functional website.
|
||||
This project runs [Quartz](https://quartz.jzhao.xyz/) v4.4.0, a fast, batteries-included static site generator, inside a Docker container. It transforms Markdown content into a fully functional website.
|
||||
|
||||
While Quartz provides [Docker support](https://quartz.jzhao.xyz/features/Docker-Support), it is not as self contained as this project.
|
||||
|
||||
|
|
|
@ -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)
|
||||
```
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue