|
@@ -17,11 +17,13 @@ var (
|
|
privateRegistryURL = "127.0.0.1:5000"
|
|
privateRegistryURL = "127.0.0.1:5000"
|
|
|
|
|
|
dockerBasePath = "/var/lib/docker"
|
|
dockerBasePath = "/var/lib/docker"
|
|
- execDriverPath = dockerBasePath + "/execdriver/native"
|
|
|
|
volumesConfigPath = dockerBasePath + "/volumes"
|
|
volumesConfigPath = dockerBasePath + "/volumes"
|
|
volumesStoragePath = dockerBasePath + "/vfs/dir"
|
|
volumesStoragePath = dockerBasePath + "/vfs/dir"
|
|
containerStoragePath = dockerBasePath + "/containers"
|
|
containerStoragePath = dockerBasePath + "/containers"
|
|
|
|
|
|
|
|
+ runtimePath = "/var/run/docker"
|
|
|
|
+ execDriverPath = runtimePath + "/execdriver/native"
|
|
|
|
+
|
|
workingDirectory string
|
|
workingDirectory string
|
|
)
|
|
)
|
|
|
|
|