Skip to content

Commit a346fe9

Browse files
MAGECLOUD-5101: Forward-port 1.0 branch
1 parent a29c4e6 commit a346fe9

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

src/Compose/BuilderInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ interface BuilderInterface
5353
public const VOLUME_MAGENTO_MEDIA = 'magento-media';
5454
public const VOLUME_MAGENTO_DB = 'magento-db';
5555
public const VOLUME_MAGENTO_DEV = 'magento-dev';
56-
public const VOLUME_DOCKER_TMP = 'docker-tmp';
5756
public const VOLUME_DOCKER_MNT = 'docker-mnt';
5857

5958
/**

src/Compose/ProductionBuilder.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -174,13 +174,6 @@ public function build(Repository $config): Manager
174174
}
175175

176176
if ($this->getMountVolumes($config)) {
177-
$volumes[self::VOLUME_DOCKER_TMP] = [
178-
'driver_opts' => [
179-
'type' => 'none',
180-
'device' => $rootPath . '/.docker/tmp',
181-
'o' => 'bind'
182-
]
183-
];
184177
$volumes[self::VOLUME_DOCKER_MNT] = [
185178
'driver_opts' => [
186179
'type' => 'none',
@@ -532,7 +525,6 @@ private function getMountVolumes(Repository $config): array
532525

533526
return [
534527
self::VOLUME_DOCKER_MNT . ':/mnt',
535-
self::VOLUME_DOCKER_TMP . ':/tmp'
536528
];
537529
}
538530
}

0 commit comments

Comments
 (0)