Skip to content

Instantly share code, notes, and snippets.

@ayr-ton
Created August 11, 2020 06:06
Show Gist options
  • Save ayr-ton/555dcfda46f7fb4ea3de6407c34f0cc7 to your computer and use it in GitHub Desktop.
Save ayr-ton/555dcfda46f7fb4ea3de6407c34f0cc7 to your computer and use it in GitHub Desktop.
FabioLB Nomad Job
job "fabio" {
datacenters = ["dc1"]
type = "system"
group "fabio" {
task "fabio" {
driver = "docker"
config {
image = "fabiolb/fabio"
network_mode = "host"
}
resources {
network {
mbits = 10
port "lb" {
static = 9999
}
port "ui" {
static = 9998
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment