commit 037c9d9ed365dd7e293c9a03de9d5289e245042e Author: Denby Date: Fri Feb 27 00:20:22 2026 -0700 Initialize Obsidian vault diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5801319 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Ignore all Obsidian configuration by default +.obsidian/* + +# Uncomment to sync specific configurations: +# !.obsidian/app.json +# !.obsidian/appearance.json +# !.obsidian/community-plugins.json +# !.obsidian/core-plugins.json +# !.obsidian/workspace.json + +# System files +.trash/ +.DS_Store diff --git a/Docker and Docker compose.md b/Docker and Docker compose.md new file mode 100644 index 0000000..25cc0f8 --- /dev/null +++ b/Docker and Docker compose.md @@ -0,0 +1,33 @@ + +### [Install using the `apt` repository](https://docs.docker.com/engine/install/debian/#install-using-the-repository) + +Before you install Docker Engine for the first time on a new host machine, you need to set up the Docker `apt` repository. Afterward, you can install and update Docker from the repository. + +1. Set up Docker's `apt` repository. + + ```bash + # Add Docker's official GPG key: + sudo apt update + sudo apt install ca-certificates curl + sudo install -m 0755 -d /etc/apt/keyrings + sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc + sudo chmod a+r /etc/apt/keyrings/docker.asc + + # Add the repository to Apt sources: + sudo tee /etc/apt/sources.list.d/docker.sources <