这里展示容器与宿主机共享文件夹
先在宿主机创建共享区域:/etc/apt
- lxc profile create share-host
- lxc profile set share-host security.privileged true
- lxc profile device add share-host /etc/apt/ disk {source,path}=/etc/apt/
(为避免 idmap 问题,创建特权容器,设置 security.privileged=true。)
然后需要在容器添加 profile:
- lxc exec -t findmnt /etc/apt/
- lxc profile add share-host
到这里,容器与宿主机已经能够共享/etc/apt文件夹啦
进入容器,cd /etc/apt进入共享文件夹
ls可以查看到全部文件
cp -r <文件夹名> /
就把共享文件夹下的某文件夹copy到了根目录下~