mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
31 lines
470 B
HCL
31 lines
470 B
HCL
project = "example-nodejs"
|
|
|
|
app "example-nodejs" {
|
|
labels = {
|
|
"service" = "example-nodejs",
|
|
"env" = "dev"
|
|
}
|
|
|
|
build {
|
|
use "pack" {}
|
|
registry {
|
|
use "docker" {
|
|
image = "aimvector/waypoint-python-example"
|
|
tag = "1"
|
|
local = false
|
|
}
|
|
}
|
|
}
|
|
|
|
deploy {
|
|
use "kubernetes" {
|
|
probe_path = "/"
|
|
}
|
|
}
|
|
|
|
release {
|
|
use "kubernetes" {
|
|
port = 5000
|
|
}
|
|
}
|
|
} |