1
0
Fork 0
mirror of synced 2024-11-22 16:25:34 -05:00

Add information regarding Bring Your Own Userspace

Eric Carlson 2021-03-31 11:55:38 -06:00
parent 14ea7c8bf8
commit d812b0b581

@ -189,6 +189,18 @@ 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. 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 # 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. 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.