I need to start mailcatcher when vagrant up complete.
vagrant up
I tried setting the setting for a roaming machine
config.vm.provision "shell", inline: 'mailcatcher --ip=0.0.0.0'
But he says unidentified command mailcatcher
unidentified command mailcatcher
MailCatcher runs through /usr/bin/env mailcatcher , so
/usr/bin/env mailcatcher
config.vm.provision "shell", inline: '/usr/bin/env mailcatcher --ip=0.0.0.0'
must work.
Source: https://habr.com/ru/post/1212195/More articles:SQLAlchemy filter according to nested keys in JSONB - pythonSpline interpolation with R - rR: Apply cut using line breaks - matrixbootstrap 3.0 with less than 12 columns - twitter-bootstrap-3BinaryFileResponse: content cannot be set in an instance of BinaryFileResponse - symfonyRunning Meteor with the Velocity Test without the Chrome Popup - meteorMaven with dependencies? - javaRecover Entity Framework First Models Code - c #Python timezone assignment - pythonIterate boost :: icl :: interval_set - c ++All Articles