Fetch networks instead of volumes (#59)
This commit is contained in:
parent
3ff9b0ccff
commit
e1dfdc65f2
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ function makeVerticesAndEdges(Graph $graph, array $services, array $volumes, arr
|
||||||
$configuration = readConfiguration(dirname($path).DIRECTORY_SEPARATOR.$definition['extends']['file']);
|
$configuration = readConfiguration(dirname($path).DIRECTORY_SEPARATOR.$definition['extends']['file']);
|
||||||
$extendedServices = fetchServices($configuration);
|
$extendedServices = fetchServices($configuration);
|
||||||
$extendedVolumes = fetchVolumes($configuration);
|
$extendedVolumes = fetchVolumes($configuration);
|
||||||
$extendedNetworks = fetchVolumes($configuration);
|
$extendedNetworks = fetchNetworks($configuration);
|
||||||
|
|
||||||
$graph = makeVerticesAndEdges($graph, $extendedServices, $extendedVolumes, $extendedNetworks, dirname($path).DIRECTORY_SEPARATOR.$definition['extends']['file'], $flags);
|
$graph = makeVerticesAndEdges($graph, $extendedServices, $extendedVolumes, $extendedNetworks, dirname($path).DIRECTORY_SEPARATOR.$definition['extends']['file'], $flags);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue