Vagrant config file?

fyzbo

New Member
Does anyone have a working vagrant file for MailWizz. I'd like to setup a development environment on my local computer (windows).
 
@fyzbo - not vagrant, but we have Docker so all you have to do, is to pull the image:

Code:
docker pull twisted1919/mailwizz

Then run it:
Code:
docker run --name mailwizz -d -p 80:80 twisted1919/mailwizz

And finally sh in it and run the installer:
Code:
docker exec -it mailwizz /root/mailwizz/scripts/setup.sh
 
Back
Top