16 lines
No EOL
502 B
HCL
16 lines
No EOL
502 B
HCL
module "smokeping" {
|
|
source = "../../docker/service"
|
|
stack_name = "smokeping"
|
|
service_name = "smokeping"
|
|
image = "linuxserver/smokeping:latest"
|
|
volumes = { "smokeping" = "/data" }
|
|
environment_variables = {
|
|
PUID = 1000
|
|
PGID = 1000
|
|
TZ = var.timezone
|
|
}
|
|
traefik = var.traefik
|
|
networks = var.networks
|
|
placement_constraints = var.placement_constraints
|
|
converge_enable = false # @todo MB: add healthcheck and fix this.
|
|
} |