scottslowe-learning-tools/vagrant-docker-yaml/containers.yml
Scott Lowe d51e3ba62e Add files for multi-container Docker environments with Vagrant
Add support files to allow users to specify a list of containers
in a YAML file and then use Vagrant to turn up all the containers.
2015-02-11 10:11:27 -07:00

7 lines
121 B
YAML

---
- name: nginx-01
image: nginx
ports: ['80:80', '443:443']
- name: redis-01
image: redis
ports: ['6379:6379']