Skip to content

Commit

Permalink
Merge pull request #311 from thomasakarlsen/main
Browse files Browse the repository at this point in the history
Update MailDev image tag, ports and template
  • Loading branch information
mattstauffer authored May 30, 2023
2 parents 1ff0f4e + 152c829 commit a921f4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/Services/MailDev.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ class MailDev extends BaseService
[
'shortname' => 'tag',
'prompt' => 'Which tag (version) of %s would you like to use?',
'default' => '1.1.0',
'default' => '2.0.5',
],
];
protected $prompts = [
[
'shortname' => 'web_port',
'prompt' => 'What will the web port be?',
'default' => '8025',
'default' => '1080',
],
];

protected $dockerRunTemplate = '-p "${:port}":25 \
-p "${:web_port}":80 \
protected $dockerRunTemplate = '-p "${:port}":1025 \
-p "${:web_port}":1080 \
"${:organization}"/"${:image_name}":"${:tag}"';
}

0 comments on commit a921f4a

Please sign in to comment.