Files
mgmt/examples/lang/docker0.mcl
James Shubin 3ca1aa9cb1 engine: resources: Fix backwards docker ports
This wasn't setup properly, now it's fixed. Woops.
2025-03-12 05:45:27 -04:00

11 lines
198 B
Plaintext

docker:container "mgmt-nginx" {
state => "running",
image => "nginx",
cmd => ["nginx", "-g", "daemon off;",],
ports => {"tcp" => {8080 => 80,},},
}
docker:image "nginx" {
state => "exists",
}