support for volumes_from docker-compose construct

Now a user can provide volumes_from to share volumes
from other service so here the PVC created for that
service will be shared by service calling volumes_from
This commit is contained in:
Suraj Deshmukh
2016-10-19 09:15:47 +05:30
parent d9899b788d
commit fd09efed43
9 changed files with 622 additions and 2 deletions
+1 -1
View File
@@ -53,7 +53,6 @@ var unsupportedKey = map[string]int{
"ShmSize": 0,
"StopSignal": 0,
"VolumeDriver": 0,
"VolumesFrom": 0,
"Uts": 0,
"ReadOnly": 0,
"StdinOpen": 0,
@@ -150,6 +149,7 @@ type ServiceConfig struct {
Privileged bool
Restart string
User string
VolumesFrom []string
}
// EnvVar holds the environment variable struct of a container