progress on LXD post

This commit is contained in:
Amolith 2023-09-11 02:54:34 -04:00
parent 5427a2cccf
commit ab8936b4d4
Signed by: Amolith
GPG Key ID: 8AE30347CE28D101
1 changed files with 9 additions and 2 deletions

View File

@ -251,11 +251,18 @@ Just document your shit.
### System containers
Personally, I use system containers for everything else. I prefer the simplicity
of being able to shell into a system and work with it almost exactly
Personally, I prefer the workflow of system containers and use them for
everything else. Because they contain entire operating systems, you're able to
interact with it in a similar way to VMs or even your PC; you shell into it,
`apt install` whatever you need, set up the application, expose it over the
network (for example, on `0.0.0.0:8080`), proxy it on the container host, and
that's it! This process can be trivially automated with shell scripts, Ansible
roles, Chef, Puppet, whatever you like.
## Crash course to LXD
Quick instructions for installing LXD and setting up your first application.
### Installation
{{< adm type="note" >}}