Last active
February 6, 2022 17:35
-
-
Save parente/025dcb2b9400a12d1a9f to your computer and use it in GitHub Desktop.
Install Docker latest on Ubuntu 14.04 with AUFS as the storage driver
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get -y install linux-image-extra-$(uname -r) | |
sudo sh -c "wget -qO- https://get.docker.io/gpg | apt-key add -" | |
sudo sh -c "echo deb http://get.docker.io/ubuntu docker main\ > /etc/apt/sources.list.d/docker.list" | |
sudo apt-get update | |
sudo apt-get -y install lxc-docker |
What is this lxc-docker
package and how does it differ from the docker-engine
package?
@jedwards1211 you can find a nice description for the same here
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A solution I manage has 19 Ubuntu 14.04 VMs running Docker 1.11. Yesterday I discovered that all but 2 of these VMs were using AUFS -- the other 2 were using devicemapper. I have no idea how that happened.
Borrowing heavily from the other answers here, this worked for me to switch these 2 VMs from devicemapper to AUFS without uninstalling Docker: