1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28# Virtual Machine Examples
This Repository contains Virtual Machines for my Talk ["Virtuelle Umgebungen mit
Vagrant, Docker und
Ansible"](https://speakerdeck.com/simono/virtuelle-umgebungen-mit-vagrant-docker-und-ansible-enterjs)
(available in German only).
## Virtual Machines:
* *minimal*: Minimal [Vagrant](https://www.vagrantup.com) VM
* *shell-nginx*: Vagrant VM with Shell Provisioner
* *docker-host*: Vagrant VM to host [Docker](http://www.docker.com) Containers
* *docker-nginx*: Docker Container with nginx
* *docker-node*: Docker Container with Node.js
* *ansible-nginx*: Vagrant VM with [Ansible](http://www.ansible.com) Provisioner
* *app*: A complete App with Node.js, Assets and Database Containers
To run the VMs use:
```sh
vagrant up
```
or for the Docker Containers:
```sh
vagrant up --provider=docker
```