Skip to content

Commit 24f6ec3

Browse files
Merge pull request #10 from creode/feature/9-remove-drush-container
remove drush container
2 parents 1b567c7 + 5a6ab2e commit 24f6ec3

4 files changed

Lines changed: 1 addition & 54 deletions

File tree

cdev.module.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ commands:
33
- cdev.docker_container_php
44
- cdev.docker_container_mailcatcher
55
- cdev.docker_container_redis
6-
- cdev.docker_container_drush
76
- cdev.docker_setup
87
- cdev.docker_watch_command
98
environments:

cdev.services.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@
2929
class="Cdev\Docker\Environment\Command\Container\Redis">
3030
</service>
3131

32-
<service id="cdev.docker_container_drush"
33-
class="Cdev\Docker\Environment\Command\Container\Drush">
34-
</service>
35-
3632
<service id="cdev.docker_watch_command" class="Cdev\Docker\Environment\Command\WatchEnvCommand">
3733
<argument type="service" id="cdev.environment.type" />
3834
</service>

src/Environment/Command/Container/Drush.php

Lines changed: 0 additions & 33 deletions
This file was deleted.

src/Environment/Command/SetupEnvCommand.php

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -102,22 +102,7 @@ class SetupEnvCommand extends ConfigurationCommand
102102
'command' => Container\Redis::COMMAND_NAME,
103103
'config' => Container\Redis::CONFIG_DIR . '/' .
104104
Container\Redis::CONFIG_FILE
105-
],
106-
'Drush' => [
107-
'defaultActive' => false,
108-
'node' => 'drush',
109-
'command' => Container\Drush::COMMAND_NAME,
110-
'config' => Container\Drush::CONFIG_DIR . '/' .
111-
Container\Drush::CONFIG_FILE,
112-
'depends' => [
113-
'php',
114-
'mysql'
115-
],
116-
'frameworks' => [
117-
'Drupal8',
118-
'Drupal7'
119-
]
120-
]
105+
]
121106
];
122107

123108
/**

0 commit comments

Comments
 (0)