1
0
mirror of https://github.com/rancher/os.git synced 2025-09-01 14:48:55 +00:00

Changes required due to labels type change in ServiceConfig

This commit is contained in:
deniseschannon
2015-04-29 20:47:47 -07:00
parent 5eeba6e070
commit 0e4f0fe292
4 changed files with 65 additions and 65 deletions

View File

@@ -79,10 +79,10 @@ outer:
Privileged: true,
Image: "autoformat",
Command: format,
Labels: []string{
config.DETACH + "=false",
config.SCOPE + "=" + config.SYSTEM,
},
Labels: project.NewSliceorMap(map[string]string{
config.DETACH: "false",
config.SCOPE: config.SYSTEM,
}),
LogDriver: "json-file",
Environment: []string{
"MAGIC=" + boot2dockerMagic,