# Copyright (c) HashiCorp, Inc. # SPDX-License-Identifier: BUSL-1.1 job "networking" { datacenters = ["dc1", "dc2"] constraint { attribute = "${attr.kernel.name}" value = "linux" } group "bridged" { network { mode = "bridge" port "dummy" { to = 13130 } } task "sleep" { driver = "docker" config { image = "busybox:1" command = "/bin/sleep" args = ["300"] } } } }