Skip to content

Commit

Permalink
Some updates and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ph3nol committed Sep 13, 2017
1 parent 0a245e3 commit c3970b2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
Binary file modified dist/docker-arch.phar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ public function init(): void
$this->setFrom('schickling/mailcatcher');

// Ports.
$this->addEnvPort('MAILCATCHER', ['from' => '8880', 'to' => '1080']);
$this->addEnvPort('MAILCATCHER', [
'from' => '8880',
'to' => '1080',
'ui' => true,
'label' => 'MailCatcher Web Client',
]);
}
}
7 changes: 6 additions & 1 deletion src/Application/DockerContainer/RabbitmqDockerContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public function init(): void
if (true === $this->getService()->getOptions()['with_management']) {
$this->addEnvPort('RABBITMQ', ['from' => '18072', 'to' => '15672']);
}
$this->addEnvPort('RABBITMQ_MANAGEMENT', ['from' => '8072', 'to' => '5672']);
$this->addEnvPort('RABBITMQ_MANAGEMENT', [
'from' => '8072',
'to' => '5672',
'ui' => true,
'label' => 'RabbitMQ Management UI',
]);
}
}

0 comments on commit c3970b2

Please sign in to comment.