F fyzbo New Member Mar 27, 2017 #1 Does anyone have a working vagrant file for MailWizz. I'd like to setup a development environment on my local computer (windows).
Does anyone have a working vagrant file for MailWizz. I'd like to setup a development environment on my local computer (windows).
twisted1919 Administrator Staff member Mar 27, 2017 #2 @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
@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