kubermemes/k8s/apps/within.website.dhall

17 lines
329 B
Plaintext

let makeApp = ../app/make.dhall
let Config = ../app/config.dhall
let image = env:DOCKER_IMAGE as Text ? "xena/within.website:091120192252"
let cfg =
Config::{
, name = "withinwebsite"
, appPort = 5000
, image = image
, domain = "within.website"
, leIssuer = "prod"
}
in makeApp cfg