From 22472a515942bd4725ab5b60e9594cf25216f22f Mon Sep 17 00:00:00 2001 From: Eric Carlson Date: Thu, 12 Oct 2023 01:20:57 -0400 Subject: [PATCH] Updated Tips and Tricks (markdown) --- Tips-and-Tricks.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Tips-and-Tricks.md b/Tips-and-Tricks.md index f013591..c9f9154 100644 --- a/Tips-and-Tricks.md +++ b/Tips-and-Tricks.md @@ -198,18 +198,6 @@ Obviously this `LocalCommand` is executed every time you connect to the remote m This works best if you use public key authentication (or GSSAPI/Kerberos authentication) so SSH doesn't ask for a password when logging in. If you do use password authentication then you will need to enter your password once for each of the two SSH connections. -## Bring Your Own Userspace (BYOU) - -Want to run your development environment in a docker container? Learn about Bring Your Own Userspace (BYOU) by following this [tutorial](https://github.com/ecarlson94/dotbot-template/wiki/Bring-Your-Own-Userspace-(BYOU))! - -Here is a quick explanation of benefits: -- Minimal dependency installation on host -- Incredibly fast uptime on new machine - - This is because most userspace dependency installation occurs in a build process and we publish our docker image to [Docker Hub](https://hub.docker.com) -- Multi-OS Friendly - - Most of our userspace dependency management is moved to alpine linux - - Except for a few things, we don't need to maintain userspace dependency installation across multiple operating systems - ## Automatically update your Dotbot config file when you add files in Git You can use this tool (implemented as a Git pre-commit hook) to automatically update Dotbot's config file when adding files in Git: https://github.com/gwerbin/dotbot-autobot.