Last active
March 31, 2017 20:30
-
-
Save rosskevin/6e693047e79f9c9d0702 to your computer and use it in GitHub Desktop.
Enable the overlay fs for Docker on Ubuntu 15.04
This file contains hidden or 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
systemctl stop docker | |
# kill all old images etc | |
rm -rf /var/lib/docker | |
# change the startup options for docker service | |
mkdir /etc/systemd/system/docker.service.d | |
cd /etc/systemd/system/docker.service.d | |
vi storage.conf | |
# add the startup option to storage.conf which rewrites the ExecStart with options | |
# NOTE: should be same as /lib/systemd/system/docker.service without aside from the storage option | |
[Service] | |
ExecStart= | |
ExecStart=/usr/bin/docker daemon -H fd:// --storage-driver=overlay | |
# reload config changes | |
systemctl daemon-reload | |
systemctl stop docker | |
# verify new storage driver | |
docker info |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment