Skip to content

Dev Environment

Networking for Docker Desktop

As Docker Desktop on Windows and MacOS uses a Linux virtual machine under the hood, it causes issues networking.

nomad agent -dev -bind=0.0.0.0 -network-interface=en0

With Configuration File

my-config.hcl
bind_addr = "0.0.0.0"

plugin "docker" {
    config {
        volumes {
            enabled = true
        }
    }
}
nomad agent -dev -config=my-config.hcl

Volumes


Last update: April 30, 2023
Created: April 30, 2023