Skip to content

Commit 0b54a13

Browse files
Gabriel MonroyMatthew Fisher
authored andcommitted
fix(docker): switch to aufs storage backend
1 parent dfc762c commit 0b54a13

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[Unit]
2+
Description=Docker Application Container Engine
3+
Documentation=http://docs.docker.io
4+
5+
[Service]
6+
ExecStartPre=/bin/mount --make-rprivate /
7+
# Run docker but don't have docker automatically restart
8+
# containers. This is a job for systemd and unit files.
9+
ExecStart=/usr/bin/docker -d -s=aufs -r=false -H fd://
10+
11+
[Install]
12+
WantedBy=multi-user.target

contrib/coreos/user-data

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ coreos:
55
addr: 172.17.8.100:4001
66
peer-addr: 172.17.8.100:7001
77
units:
8+
- name: docker.service
9+
content: |
10+
[Unit]
11+
Description=Docker Application Container Engine
12+
Documentation=http://docs.docker.io
13+
14+
[Service]
15+
ExecStartPre=/bin/mount --make-rprivate /
16+
# Run docker but don't have docker automatically restart
17+
# containers. This is a job for systemd and unit files.
18+
ExecStart=/usr/bin/docker -d -s=aufs -r=false -H fd://
19+
20+
[Install]
21+
WantedBy=multi-user.target
822
- name: docker-tcp.socket
923
command: start
1024
content: |

0 commit comments

Comments
 (0)