зеркало из https://github.com/mozilla/minion-vm.git
INACTIVE - http://mzl.la/ghe-archive - Vagrantfile and Dockerfiles that help make minion development and deployment far easier
61d0c27a12 | ||
---|---|---|
.gitignore | ||
Dockerfile-backend | ||
Dockerfile-frontend | ||
LICENSE | ||
README.md | ||
Vagrantfile | ||
backend.json | ||
backend.sh | ||
frontend.json | ||
frontend.sh | ||
vagrant-hosts.sh |
README.md
minion-vagrant
Vagrantfile and Dockerfiles to make developing against Mozilla Minion far easier.
Mozilla Minion is available:
- https://github.com/mozilla/minion
- https://github.com/mozilla/minion-backend
- https://github.com/mozilla/minion-frontend
To configure Vagrant:
- Edit the BACKEND_SRC, FRONTEND_SRC, and APT_CACHE_SRC variables in
Vagrantfile
to point to their locations on your local system - Edit the IP addresses in
Vagrantfile
andhosts.sh
if you want your private network to use something besides 192.168.50.49 and 192.168.50.50 - Edit
backend.sh
to change the default administrator's email address and name
To run Vagrant:
vagrant up
That's it! You can ssh into your new (and hopefully fully-functioning) Minion instances with vagrant ssh minion-frontend
and vagrant ssh minion-backend
.
You can also access the minion-frontend web site at http://192.168.50.50:8080 (or whatever you set the IP to).
To configure Docker:
docker build -t 'mozilla/minion-backend' Dockerfile-backend
docker build -t 'mozilla/minion-frontend' Dockerfile-frontend
To run Docker:
docker run -d --name 'minion-backend'
docker run -d -p 8080:8080 --name 'minion-frontend' --link minion-backend:minion-backend 'mozilla/minion-frontend'