Skip to content

Instantly share code, notes, and snippets.

View chadhutchins182's full-sized avatar

Chad Hutchins chadhutchins182

View GitHub Profile
@chadhutchins182
chadhutchins182 / docker-compose-install-instructions-rpi4.md
Last active May 7, 2024 18:35
How to install docker-compose on a Raspberry Pi 4 running Bullseye

How to install docker-compose on a Raspberry Pi 4 when other methods fail

Credit: https://raspberrypi.stackexchange.com/a/136203

Other methods failed for me on a new Raspberry Pi 4 on bullseye. Using apt gave too old of a version for my compose files.

Commands to run

1. Find Processor Version:

@grenade
grenade / 01-generate-ed25519-ssh-key.sh
Last active June 18, 2024 05:42
generate ed25519 ssh and gpg/pgp keys and set file permissions for ssh keys and config
#!/bin/bash
# generate new personal ed25519 ssh key
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "rob thijssen <rthijssen@gmail.com>"
# generate new host cert authority (host_ca) ed25519 ssh key
# used for signing host keys and creating host certs
ssh-keygen -t ed25519 -f manta_host_ca -C manta.network
eval "$(ssh-agent -s)"