使用 LXC、LXD 镜像和容器时,我是否可以为特定 Ubuntu 发行版构建自己的镜像?然后我将其用作容器。谢谢
答案1
是的。
您可以使用以下命令转换图像中的容器:
lxc launch ubuntu:trusty image_container
...
...(you can use lxc launch ubuntu:xenial ... for a different ubuntu release)
...
lxc exec image_container bash
...
...(prepare your container to be setup for be a new image...)
....
lxc publish image_container --alias local_image
此后,您就可以在容器中看到您的 local_image,就像本地图像服务器一样。