Displaying 2 results from an estimated 2 matches for "my_container".
2019 Jul 05
2
Container setup?
On 7/4/19 12:49 PM, Joachim Lindenberg wrote:
> * I am not (yet) familiar with LXD or nspawn. Do you have any pointer on how Samba DC works with LXD?
>
I've only used LXD for containerizing web applications so far.
2019 Jul 10
1
Container setup?
...u:16.04 local: --alias ubuntu16
>
> will make a local copy of the container image. Note: you don't need to keep
> a local copy, but I find it faster and easier when I'm testing and
> creating/deleting containers frequently.
>
> Then:
>
> lxc launch ubuntu16 my_container -c security.privileged=true
>
> creates and launches a container called "my_container" based on Ubuntu16.
>
> You can ssh to this container:
>
> lxc exec my_container -- bash
>
> and now you're root on an Ubuntu16 machine and can do whatever you
> wou...