Using Overlay file system with Docker on systemd Ubuntu (14.10+)
24Dec15
Back in March I wrote about Using Overlay file system with Docker on Ubuntu – those instructions applied to Ubuntu before the switch to systemd e.g. 14.04 and earlier.
The move to systemd means that changes to /etc/default/docker don’t have any effect any more.
To get systemd to dance along to our tune needs a file like this:
/etc/systemd/system/docker.service.d/overlay.conf
[Service] ExecStart= ExecStart=/usr/bin/docker daemon -H fd:// --storage-driver=overlay
To make this work use the following script (or get it from gist to avoid silly copy/past replacement of < with <):
sudo mkdir /etc/systemd/system/docker.service.d sudo bash -c 'cat <<EOF > /etc/systemd/system/docker.service.d/overlay.conf [Service] ExecStart= ExecStart=/usr/bin/docker daemon -H fd:// --storage-driver=overlay EOF' sudo systemctl daemon-reload sudo systemctl restart docker
Now when you run ‘sudo docker info’ you should see something like:
... Storage Driver: overlay Backing Filesystem: extfs ...
At least you didn’t need to upgrade the kernel this time – small mercies.
NB this is somewhat (inaccurately right now) documented in Control and configure Docker with systemd – I can feel a PR coming on.
Filed under: Docker, howto | 1 Comment
Tags: Docker, file system, overlay, systemd, Ubuntu
Subscribe
Search
Raspberry Pi Downloads
Top Posts
- May 2023
- SOCKS Proxy SSH Tunnels on OpenWRT
- Fixing flow on Aqualisa Midas Plus shower mixer
- Howto - Factory Reset iLO 4 on HP Microserver Gen8
- Howto: secure your DNS with a Raspberry Pi, Unbound and Cloudflare 1.1.1.1
- Getting more from a British Gas UP2 Timer
- Making an image file from an SD card on Windows
- Using Amazon EC2 as a web proxy
- Leaving the Institution
- "I'm not technical"
-
Recent Posts
Recent Comments
afshin on SOCKS Proxy SSH Tunnels on… andyjpb on Milo cancer diary part 3… J on Milo cancer diary part 2… ChrisB on Reversion marketing milam8m on Milo cancer diary part 1… Pinboard.in bookmarks
- SiFive Gives its WorldGuard Security Model to the RISC-V Community
- Shorebird
- Not for the first time, Sunak has been hung out to dry by Johnson
- As Brexit fails, attention turns to Labour
- How Boris Johnson sold out Britain’s farmers over dinner with the Australian PM
- Linux Foundation and friends back RISC-V software ecosystem
- Modular conversion, encoding and encryption online - cryptii
- Box64 and RISC-V
- Trust and Trustability. How Promise Theory tells us trust is.
- The desperate, deranged Tories risk destroying themselves over Johnson
Twitter Updates
Tweets by cpswanBlogroll
- 451 CAOS Theory
- Adam Bosworth’s Weblog
- Andrew McAfee
- Behavioural Investing
- CapitalSCF
- Carpe Visum
- causticTech
- Charles Stross
- confused of calcutta
- Cory Doctorow
- Craig Murray
- Dan Creswell’s Weblog
- Dark Reading
- Dilbert Blog
- DJW
- Doc Searls
- Don Box’s Spoutlet
- Dopplr
- Eben Moglen
- Enhyper
- Financial Cryptography
- Fred Destin
- Freedom to Tinker
- Graham Glass, etc.
- Greg Matter
- Hugh Grant
- Internet Alchemy
- Invisible Things
- James Strachan’s Weblog
- John Merrells
- Jon Udel
- Justice League
- Kim Cameron
- Lambda the Ultimate – Programming Languages Weblog
- Light Blue Touchpaper
- Loosely Coupled weblog
- Luke Hutteman’s Weblog
- Marc Andreeson
- Nick Selby
- ongoing
- Otaku, Cedric’s weblog
- Park Paradigm
- Paul Graham
- Phil Becker
- Pi4Tech
- PJKtech
- Radovan Janecek: Nothing Impersonal
- rants
- Richard Monson-Haefel
- SAAS
- Schneier on Security
- Service Oriented Enterprise
- Simon Phipps’s Blog
- techno.blog(“Dion”)
- The BileBlog
- THE GRID BLOG
- Tim Oren’s Due Diligence
- timbl’s blog
- virtualization.info
- WebMink
- WebServices.org
- XKCD
Categories
One Response to “Using Overlay file system with Docker on systemd Ubuntu (14.10+)”