我正在努力彻底安装Ubuntu 16.04.3。这是一个完全重新格式化的磁盘,上面没有任何内容。像往常一样运行sudo apt update
和sudo apt upgrade
后,我安装的第一件事就是LXD快照包。我试图使用Docker配置文件创建我的第一个容器,我收到以下错误:
Creating mytest
error: Failed container creation:
- https://cloud-images.ubuntu.com/daily: Requested profile 'docker' doesn't exist
我的LXD安装步骤:
sudo apt install lxcfs
sudo groupadd --system lxd
sudo usermod -G lxd -a myuser
我重新启动了计算机
sudo snap install lxd
sudo lxd init
我使用了LXD配置的所有默认设置。
我试图用:
启动我的第一个容器lxc launch ubuntu-daily:16.04 mytest -p default -p docker
有什么想法吗?