Merge pull request #398 from rhatdan/containers_storage

Default all container storage to /var/lib/containers/storage
This commit is contained in:
Antonio Murdaca 2017-03-25 08:22:11 +01:00 committed by GitHub
commit 37f118d73a
4 changed files with 8 additions and 8 deletions

View file

@ -10,8 +10,8 @@ import (
// Default paths if none are specified
const (
ocidRoot = "/var/lib/ocid"
ocidRunRoot = "/var/run/containers"
ocidRoot = "/var/lib/containers/storage"
ocidRunRoot = "/var/run/containers/storage"
conmonPath = "/usr/libexec/ocid/conmon"
pauseImage = "kubernetes/pause"
pauseCommand = "/pause"