mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Add files for a multi-container environment using the Vagrant Docker provider and an external JSON data file. That includes a Vagrantfile, external JSON data file, host VM Vagrantfile, and README.md.
13 lines
159 B
JSON
13 lines
159 B
JSON
[
|
|
{
|
|
"name": "nginx-01",
|
|
"image": "nginx",
|
|
"ports": ["80:80", "443:443"]
|
|
},
|
|
|
|
{
|
|
"name": "redis-01",
|
|
"image": "redis",
|
|
"ports": ["6379:6379"]
|
|
}
|
|
]
|