onssh
を使用して ec2 インスタンスにアクセスした後、実行してみましたvagrant
ubuntu
sudo docker run -i -t ubuntu echo 'hello'
、しかし、私はこのエラーが発生します:
Error starting container da3124903fc4: Unable to load the AUFS module
どうすればこれをロードできますAUFS module
か?
私はすでにaufs-tools
インストールしています。
onssh
を使用して ec2 インスタンスにアクセスした後、実行してみましたvagrant
ubuntu
sudo docker run -i -t ubuntu echo 'hello'
、しかし、私はこのエラーが発生します:
Error starting container da3124903fc4: Unable to load the AUFS module
どうすればこれをロードできますAUFS module
か?
私はすでにaufs-tools
インストールしています。
apt-get purge lxc-docker
次のコマンドで実行して再インストールしました。
curl https://get.docker.io | sudo sh
以下のエラーが出ましたが、インストールは続行され終了しました。
Ensuring basic dependencies are installed...
Looking in /proc/filesystems to see if we have AUFS support...
Ahem, it looks like the current kernel does not support AUFS.
Let's see if we can load the AUFS module with modprobe...
FATAL: Module aufs not found.
Ahem, things didn't turn out as expected.
私が実行docker run ubuntu echo hello
すると結果はhello
ですので、すべて問題ないようです。