回答:
進化するsnappyモデルの制限の問題のため、Dockerはデフォルトでは完全なフレーバーではありません(Snapcraftフォーラムのディスカッションを参照)。
適切な修正が適用されるまで、閉じ込めモデルを回避する(つまり、解除する)方法についての役立つ説明を取得します。スナップにパッケージされているDockerヘルプアプリケーションを確認するだけです。
$ docker.help
Docker snap: Docker Linux container runtime.
Due to the confinement issues on snappy, it requires some manual setup to make docker-snap works on your machine.
We'll take you through the steps needed to set up docker snap work for you on ubuntu core and ubuntu classic.
On Ubuntu classic, before installing the docker snap,
please run the following command to add the login user into docker group.
sudo addgroup --system docker
sudo adduser $USER docker
newgrp docker
On Ubuntu Core 16, after installing the docker snap from store,
Firstly, you need to connect the two interfaces as they're not auto-connected by default.
sudo snap connect docker:account-control :account-control
sudo snap connect docker:home :home
Secondly, reload the snap and allows the user to login to the new group "docker-snap".
snap disable docker
snap enable docker
newgrp docker-snap
Then have fun with docker in snappy.
最後のコマンドは失敗します...
$ newgrp docker-snap
newgrp: group 'docker-snap' does not exist
しかし、失敗による悪影響は気づかず、Dockerは期待どおりに機能するようになりました。
Cannot connect to the Docker daemon