mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-04-27 17:16:41 -04:00
37 lines
406 B
HCL
37 lines
406 B
HCL
project = "foo"
|
|
|
|
app "foo" {
|
|
build {
|
|
use "docker" {}
|
|
}
|
|
|
|
deploy {
|
|
use "docker" {}
|
|
}
|
|
}
|
|
|
|
app "relative_above_root" {
|
|
path = "../nope"
|
|
|
|
build {
|
|
use "docker" {}
|
|
}
|
|
|
|
deploy {
|
|
use "docker" {}
|
|
}
|
|
}
|
|
|
|
app "system_label" {
|
|
labels = {
|
|
"vagrant/foo" = "bar"
|
|
}
|
|
|
|
build {
|
|
use "docker" {}
|
|
}
|
|
|
|
deploy {
|
|
use "docker" {}
|
|
}
|
|
}
|