-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Arthur Gautier <[email protected]> Signed-off-by: Jörg Thalheim <[email protected]>
- Loading branch information
Showing
20 changed files
with
1,985 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,9 @@ | |
FROM ubuntu:14.04 | ||
MAINTAINER Tianon Gravi <[email protected]> (@tianon) | ||
|
||
RUN apt-key adv --keyserver pool.sks-keyservers.net --recv-keys E871F18B51E0147C77796AC81196BA81F6B0FC61 | ||
RUN echo deb http://ppa.launchpad.net/zfs-native/stable/ubuntu trusty main > /etc/apt/sources.list.d/zfs.list | ||
|
||
# Packaged dependencies | ||
RUN apt-get update && apt-get install -y \ | ||
apparmor \ | ||
|
@@ -50,6 +53,8 @@ RUN apt-get update && apt-get install -y \ | |
ruby1.9.1 \ | ||
ruby1.9.1-dev \ | ||
s3cmd=1.1.0* \ | ||
ubuntu-zfs \ | ||
libzfs-dev \ | ||
--no-install-recommends | ||
|
||
# Get lvm2 source for compiling statically | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// +build !exclude_graphdriver_zfs | ||
|
||
package daemon | ||
|
||
import ( | ||
_ "github.com/docker/docker/daemon/graphdriver/zfs" | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ var ( | |
priority = []string{ | ||
"aufs", | ||
"btrfs", | ||
"zfs", | ||
"devicemapper", | ||
"overlay", | ||
"vfs", | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Arthur Gautier <[email protected]> (@baloose) |
Oops, something went wrong.