2015-09-20 22:31:33 +00:00
---
layout: "docs"
page_title: "Drivers: Docker"
2015-09-25 02:35:52 +00:00
sidebar_current: "docs-drivers-docker"
2015-09-20 22:31:33 +00:00
description: |-
The Docker task driver is used to run Docker based tasks.
---
# Docker Driver
2015-09-25 02:35:52 +00:00
Name: `docker`
2015-09-20 22:31:33 +00:00
2015-09-25 02:35:52 +00:00
The `docker` driver provides a first-class Docker workflow on Nomad. The Docker
2015-09-25 02:33:06 +00:00
driver handles downloading containers, mapping ports, and starting, watching,
2015-09-29 21:00:48 +00:00
and cleaning up after containers.
2015-09-20 22:31:33 +00:00
2015-09-25 02:33:06 +00:00
## Task Configuration
2016-10-03 21:35:20 +00:00
```hcl
2015-11-19 00:30:37 +00:00
task "webservice" {
2016-10-03 21:35:20 +00:00
driver = "docker"
config {
image = "redis:3.2"
labels {
group = "webservice-cache"
2015-11-19 00:30:37 +00:00
}
2016-10-03 21:35:20 +00:00
}
2016-10-28 00:36:26 +00:00
}
2015-11-19 00:30:37 +00:00
```
2017-05-20 00:04:28 +00:00
The `docker` driver supports the following configuration in the job spec. Only
`image` is required.
2015-09-25 02:33:06 +00:00
2016-10-03 21:35:20 +00:00
* `image` - The Docker image to run. The image may include a tag or custom URL
and should include `https://` if required. By default it will be fetched from
2017-02-28 23:25:57 +00:00
Docker Hub. If the tag is omitted or equal to `latest` the driver will always
try to pull the image. If the image to be pulled exists in a registry that
requires authentication credentials must be provided to Nomad. Please see the
2017-02-27 19:02:01 +00:00
[Authentication section ](#authentication ).
2016-10-03 21:35:20 +00:00
```hcl
config {
image = "https://hub.docker.internal/redis:3.2"
}
2016-10-07 23:43:17 +00:00
```
2015-09-25 02:33:06 +00:00
2016-07-19 17:44:03 +00:00
* `args` - (Optional) A list of arguments to the optional `command` . If no
2017-07-17 18:41:50 +00:00
`command` is specified, the arguments are passed directly to the container.
2016-09-28 02:12:56 +00:00
References to environment variables or any [interpretable Nomad
2016-10-28 00:36:26 +00:00
variables](/docs/runtime/interpolation.html) will be interpreted before
2016-09-28 02:12:56 +00:00
launching the task. For example:
```hcl
2016-10-03 21:35:20 +00:00
config {
args = [
"-bind", "${NOMAD_PORT_http}",
"${nomad.datacenter}",
"${MY_ENV}",
"${meta.foo}",
]
}
2016-09-28 02:12:56 +00:00
```
2015-10-16 00:28:25 +00:00
2017-05-20 00:04:28 +00:00
* `auth` - (Optional) Provide authentication for a private registry (see below).
2017-07-06 19:30:08 +00:00
* `auth_soft_fail` `(bool: false)` - Don't fail the task on an auth failure.
Attempt to continue without auth.
2017-07-06 18:35:34 +00:00
2017-05-20 00:04:28 +00:00
* `command` - (Optional) The command to run when starting the container.
2015-11-19 00:30:37 +00:00
2016-10-03 21:35:20 +00:00
```hcl
config {
2017-05-20 00:04:28 +00:00
command = "my-command"
2016-10-03 21:35:20 +00:00
}
```
2018-07-02 18:14:41 +00:00
2017-05-20 00:04:28 +00:00
* `dns_search_domains` - (Optional) A list of DNS search domains for the container
to use.
2017-08-09 11:30:06 +00:00
* `dns_options` - (Optional) A list of DNS options for the container to use.
2017-05-20 00:04:28 +00:00
* `dns_servers` - (Optional) A list of DNS servers for the container to use
2017-07-06 19:46:25 +00:00
(e.g. ["8.8.8.8", "8.8.4.4"]). Requires Docker v1.10 or greater.
2017-05-20 00:04:28 +00:00
2018-01-23 22:05:00 +00:00
* `entrypoint` - (Optional) A string list overriding the image's entrypoint.
2017-05-20 00:04:28 +00:00
* `extra_hosts` - (Optional) A list of hosts, given as host:IP, to be added to
`/etc/hosts` .
* `force_pull` - (Optional) `true` or `false` (default). Always pull latest image
instead of using existing local image. Should be set to `true` if repository tags
are mutable.
* `hostname` - (Optional) The hostname to assign to the container. When
launching more than one of a task (using `count` ) with this option set, every
container the task starts will have the same hostname.
* `interactive` - (Optional) `true` or `false` (default). Keep STDIN open on
the container.
2015-11-19 00:30:37 +00:00
2017-03-31 08:18:26 +00:00
* `sysctl` - (Optional) A key-value map of sysctl configurations to set to the
2017-11-20 17:15:09 +00:00
containers on start.
2017-03-29 16:52:34 +00:00
```hcl
config {
2017-03-31 08:18:26 +00:00
sysctl {
2017-03-29 16:52:34 +00:00
net.core.somaxconn = "16384"
}
}
```
2017-03-31 08:18:26 +00:00
* `ulimit` - (Optional) A key-value map of ulimit configurations to set to the
2017-03-29 16:52:34 +00:00
containers on start.
```hcl
config {
2017-03-31 08:18:26 +00:00
ulimit {
2017-03-29 16:52:34 +00:00
nproc = "4242"
nofile = "2048:4096"
}
}
```
* `privileged` - (Optional) `true` or `false` (default). Privileged mode gives
the container access to devices on the host. Note that this also requires the
nomad agent and docker daemon to be configured to allow privileged
containers.
2016-01-10 21:19:33 +00:00
* `ipc_mode` - (Optional) The IPC mode to be used for the container. The default
is `none` for a private IPC namespace. Other values are `host` for sharing
the host IPC namespace or the name or id of an existing container. Note that
2016-10-11 19:52:50 +00:00
it is not possible to refer to Docker containers started by Nomad since their
2016-01-10 21:19:33 +00:00
names are not known in advance. Note that setting this option also requires the
Nomad agent to be configured to allow privileged containers.
2017-05-20 00:04:28 +00:00
* `ipv4_address` - (Optional) The IPv4 address to be used for the container when
2017-07-06 19:46:25 +00:00
using user defined networks. Requires Docker 1.13 or greater.
2016-01-10 21:19:33 +00:00
2017-05-20 00:04:28 +00:00
* `ipv6_address` - (Optional) The IPv6 address to be used for the container when
2017-07-06 19:46:25 +00:00
using user defined networks. Requires Docker 1.13 or greater.
2016-01-08 22:34:49 +00:00
2017-05-20 00:04:28 +00:00
* `labels` - (Optional) A key-value map of labels to set to the containers on
start.
2016-11-04 23:53:56 +00:00
2017-05-20 00:04:28 +00:00
```hcl
config {
labels {
foo = "bar"
zip = "zap"
}
}
```
2017-09-29 18:29:11 +00:00
* `load` - (Optional) Load an image from a `tar` archive file instead of from a
remote repository. Equivalent to the `docker load -i <filename>` command.
2017-05-20 00:04:28 +00:00
```hcl
artifact {
source = "http://path.to/redis.tar"
}
config {
2017-09-29 18:29:11 +00:00
load = "redis.tar"
2017-05-20 00:04:28 +00:00
image = "redis"
}
```
* `logging` - (Optional) A key-value map of Docker logging options. The default
value is `syslog` .
```hcl
config {
logging {
type = "fluentd"
config {
fluentd-address = "localhost:24224"
tag = "your_tag"
}
}
}
```
2015-10-01 02:15:24 +00:00
2017-07-06 19:46:25 +00:00
* `mac_address` - (Optional) The MAC address for the container to use (e.g.
"02:68:b3:29:da:98").
2016-11-11 16:38:16 +00:00
* `network_aliases` - (Optional) A list of network-scoped aliases, provide a way for a
container to be discovered by an alternate name by any other container within
the scope of a particular network. Network-scoped alias is supported only for
containers in user defined networks
```hcl
config {
2016-12-19 22:22:08 +00:00
network_mode = "user-network"
2016-11-11 16:38:16 +00:00
network_aliases = [
"${NOMAD_TASK_NAME}",
"${NOMAD_TASK_NAME}-${NOMAD_ALLOC_INDEX}"
]
}
```
2017-05-20 00:04:28 +00:00
* `network_mode` - (Optional) The network mode to be used for the container. In
order to support userspace networking plugins in Docker 1.9 this accepts any
value. The default is `bridge` for all operating systems but Windows, which
defaults to `nat` . Other networking modes may not work without additional
configuration on the host (which is outside the scope of Nomad). Valid values
pre-docker 1.9 are `default` , `bridge` , `host` , `none` , or `container:name` .
2017-04-07 13:58:17 +00:00
2017-05-20 00:04:28 +00:00
* `pid_mode` - (Optional) `host` or not set (default). Set to `host` to share
the PID namespace with the host. Note that this also requires the Nomad agent
to be configured to allow privileged containers.
See below for more details.
2017-04-07 13:58:17 +00:00
2017-05-20 00:04:28 +00:00
* `port_map` - (Optional) A key-value map of port labels (see below).
2015-11-19 01:49:20 +00:00
2017-05-20 00:04:28 +00:00
* `security_opt` - (Optional) A list of string flags to pass directly to
[`--security-opt` ](https://docs.docker.com/engine/reference/run/#security-configuration ).
For example:
2017-04-11 17:52:24 +00:00
2017-01-12 22:07:36 +00:00
2017-05-20 00:04:28 +00:00
```hcl
config {
security_opt = [
"credentialspec=file://gmsaUser.json",
]
}
```
2015-11-18 00:02:42 +00:00
2017-05-20 00:04:28 +00:00
* `shm_size` - (Optional) The size (bytes) of /dev/shm for the container.
2017-04-11 17:52:24 +00:00
2017-01-12 22:07:36 +00:00
* `SSL` - (Optional) If this is set to true, Nomad uses SSL to talk to the
repository. The default value is `true` . **Deprecated as of 0.5.3**
2015-11-19 00:30:37 +00:00
2016-04-08 17:51:07 +00:00
* `tty` - (Optional) `true` or `false` (default). Allocate a pseudo-TTY for the
container.
2017-05-20 00:04:28 +00:00
* `uts_mode` - (Optional) `host` or not set (default). Set to `host` to share
the UTS namespace with the host. Note that this also requires the Nomad agent
to be configured to allow privileged containers.
2016-10-07 19:28:42 +00:00
2017-05-20 00:04:28 +00:00
* `userns_mode` - (Optional) `host` or not set (default). Set to `host` to use
the host's user namespace when user namespace remapping is enabled on the
docker daemon.
2016-10-07 19:28:42 +00:00
2016-09-27 20:13:55 +00:00
* `volumes` - (Optional) A list of `host_path:container_path` strings to bind
2016-11-10 22:47:54 +00:00
host paths to container paths. Mounting host paths outside of the allocation
directory can be disabled on clients by setting the `docker.volumes.enabled`
option set to false. This will limit volumes to directories that exist inside
the allocation directory.
2016-09-27 20:13:55 +00:00
2016-10-07 23:23:55 +00:00
```hcl
config {
2016-10-21 17:34:01 +00:00
volumes = [
# Use absolute paths to mount arbitrary paths on the host
"/path/on/host:/path/in/container",
# Use relative paths to rebind paths already in the allocation dir
2016-11-10 22:47:54 +00:00
"relative/to/task:/also/in/container"
2016-10-21 17:34:01 +00:00
]
2016-10-07 23:23:55 +00:00
}
```
2017-02-27 19:02:01 +00:00
2017-02-23 17:36:32 +00:00
* `volume_driver` - (Optional) The name of the volume driver used to mount
volumes. Must be used along with `volumes` .
Using a `volume_driver` also allows to use `volumes` with a named volume as
2017-02-23 23:20:53 +00:00
well as absolute paths. If `docker.volumes.enabled` is false then volume
drivers are disallowed.
2017-02-23 17:36:32 +00:00
2017-02-27 19:02:01 +00:00
```hcl
2017-02-23 17:36:32 +00:00
config {
volumes = [
# Use named volume created outside nomad.
"name-of-the-volume:/path/in/container"
]
2017-02-23 19:01:27 +00:00
# Name of the Docker Volume Driver used by the container
2018-01-13 00:09:50 +00:00
volume_driver = "pxd"
2017-02-23 17:36:32 +00:00
}
```
2016-10-07 23:23:55 +00:00
2016-08-03 14:18:15 +00:00
* `work_dir` - (Optional) The working directory inside the container.
2017-08-22 21:12:44 +00:00
2017-08-21 19:32:44 +00:00
* `mounts` - (Optional) A list of
[mounts ](https://docs.docker.com/engine/reference/commandline/service_create/#add-bind-mounts-or-volumes )
2017-08-22 21:12:44 +00:00
to be mounted into the container. Only volume type mounts are supported.
2017-08-21 19:32:44 +00:00
```hcl
config {
mounts = [
{
target = "/path/in/container"
source = "name-of-volume"
readonly = false
volume_options {
no_copy = false
labels {
foo = "bar"
}
driver_config {
2018-01-13 00:09:50 +00:00
name = "pxd"
2017-08-21 19:32:44 +00:00
options = {
foo = "bar"
}
}
}
}
]
}
```
2017-11-06 18:27:13 +00:00
* `devices` - (Optional) A list of
[devices ](https://docs.docker.com/engine/reference/commandline/run/#add-host-device-to-container-device )
to be exposed the container. `host_path` is the only required field. By default, the container will be able to
`read` , `write` and `mknod` these devices. Use the optional `cgroup_permissions` field to restrict permissions.
2016-08-03 14:18:15 +00:00
2017-11-06 18:27:13 +00:00
```hcl
config {
devices = [
{
host_path = "/dev/sda1"
container_path = "/dev/xvdc"
cgroup_permissions = "r"
},
{
host_path = "/dev/sda2"
container_path = "/dev/xvdd"
}
]
}
```
2017-12-12 22:11:15 +00:00
2018-01-21 11:14:24 +00:00
* `cap_add` - (Optional) A list of Linux capabilities as strings to pass directly to
2018-01-14 18:56:57 +00:00
[`--cap-add` ](https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities ).
2018-02-24 09:27:23 +00:00
Effective capabilities (computed from `cap_add` and `cap_drop` ) have to match the configured whitelist.
2018-04-25 06:40:37 +00:00
The whitelist can be customized using the `docker.caps.whitelist` key in the client node's configuration.
2018-01-14 18:56:57 +00:00
For example:
```hcl
config {
cap_add = [
"SYS_TIME",
]
}
```
2018-01-21 11:14:24 +00:00
* `cap_drop` - (Optional) A list of Linux capabilities as strings to pass directly to
2018-01-14 18:56:57 +00:00
[`--cap-drop` ](https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities ).
2018-02-24 09:27:23 +00:00
Effective capabilities (computed from `cap_add` and `cap_drop` ) have to match the configured whitelist.
2018-01-21 11:14:24 +00:00
The whitelist can be customized using the `docker.caps.whitelist` key in the client node's configuration.
2018-01-14 18:56:57 +00:00
For example:
```hcl
config {
cap_drop = [
"MKNOD",
]
}
```
2018-02-09 04:20:26 +00:00
* `cpu_hard_limit` - (Optional) `true` or `false` (default). Use hard CPU
limiting instead of soft limiting. By default this is `false` which means
soft limiting is used and containers are able to burst above their CPU limit
when there is idle capacity.
2018-07-11 07:12:21 +00:00
* `cpu_cfs_period` - (Optional) An integer value that specifies the duration in microseconds of the period
during which the CPU usage quota is measured. The default is 100000 (0.1 second) and the maximum allowed
value is 1000000 (1 second). See [here ](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/resource_management_guide/sec-cpu#sect-cfs )
for more details.
2018-07-02 18:14:41 +00:00
* `advertise_ipv6_address` - (Optional) `true` or `false` (default). Use the container's
2018-01-31 23:01:25 +00:00
IPv6 address (GlobalIPv6Address in Docker) when registering services and checks.
See [IPv6 Docker containers ](/docs/job-specification/service.html#IPv6 Docker containers ) for details.
2018-01-14 18:56:57 +00:00
2018-01-27 13:38:29 +00:00
* `readonly_rootfs` - (Optional) `true` or `false` (default). Mount
the container's filesystem as read only.
2018-05-30 19:58:03 +00:00
* `pids_limit` - (Optional) An integer value that specifies the pid limit for
the container. Defaults to unlimited.
2015-11-19 00:39:02 +00:00
### Container Name
2015-11-19 00:45:39 +00:00
Nomad creates a container after pulling an image. Containers are named
`{taskName}-{allocId}` . This is necessary in order to place more than one
container from the same task on a host (e.g. with count > 1). This also means
that each container's name is unique across the cluster.
2015-11-19 00:39:02 +00:00
This is not configurable.
2015-11-19 00:30:37 +00:00
### Authentication
2015-11-17 13:14:35 +00:00
2015-11-19 00:45:39 +00:00
If you want to pull from a private repo (for example on dockerhub or quay.io),
2017-05-29 10:44:13 +00:00
you will need to specify credentials in your job via:
* the `auth` option in the task config.
2017-05-31 22:56:54 +00:00
* by storing explicit repository credentials or by specifying Docker
`credHelpers` in a file and setting the [docker.auth.config ](#auth_file )
value on the client.
2017-05-29 10:44:13 +00:00
* by specifying a [docker.auth.helper ](#auth_helper ) on the client
2015-11-18 07:32:57 +00:00
2015-11-18 09:37:42 +00:00
The `auth` object supports the following keys:
* `username` - (Optional) The account username.
2015-11-19 00:30:37 +00:00
2015-11-18 09:37:42 +00:00
* `password` - (Optional) The account password.
2015-11-19 00:30:37 +00:00
2015-11-18 09:37:42 +00:00
* `email` - (Optional) The account email.
2015-11-19 00:30:37 +00:00
2016-07-18 14:24:30 +00:00
* `server_address` - (Optional) The server domain/IP without the protocol.
2015-11-19 00:30:37 +00:00
Docker Hub is used by default.
2017-05-29 10:44:13 +00:00
Example task-config:
2015-11-05 18:47:41 +00:00
2016-10-03 21:35:20 +00:00
```hcl
task "example" {
driver = "docker"
2016-03-16 16:56:04 +00:00
2016-10-03 21:35:20 +00:00
config {
image = "secret/service"
2016-03-16 16:56:04 +00:00
2016-10-03 21:35:20 +00:00
auth {
username = "dockerhub_user"
password = "dockerhub_password"
2015-11-19 00:30:37 +00:00
}
2016-10-03 21:35:20 +00:00
}
2015-11-19 00:30:37 +00:00
}
```
2015-09-25 02:33:06 +00:00
2017-05-29 10:44:13 +00:00
Example docker-config, using two helper scripts in $PATH,
"docker-credential-ecr" and "docker-credential-vault":
```json
{
"auths": {
"internal.repo": { "auth": "`echo -n '< username > :< password > ' | base64 -w0`" }
},
"credHelpers": {
"< XYZ > .dkr.ecr.< region > .amazonaws.com": "ecr-login"
},
"credsStore": "secretservice"
}
```
2017-10-11 20:19:40 +00:00
Example agent configuration, using a helper script "docker-credential-ecr" in
$PATH
2017-05-29 10:44:13 +00:00
2017-10-11 20:19:40 +00:00
```hcl
client {
enabled = true
options {
"docker.auth.helper" = "ecr"
}
}
```
2016-10-03 21:35:20 +00:00
!> **Be Careful!** At this time these credentials are stored in Nomad in plain
text. Secrets management will be added in a later release.
2015-09-25 02:33:06 +00:00
2015-11-19 00:30:37 +00:00
## Networking
2015-09-25 02:33:06 +00:00
2015-11-19 00:45:39 +00:00
Docker supports a variety of networking configurations, including using host
interfaces, SDNs, etc. Nomad uses `bridged` networking by default, like Docker.
2015-09-25 23:49:26 +00:00
2015-11-19 00:30:37 +00:00
You can specify other networking options, including custom networking plugins
in Docker 1.9. **You may need to perform additional configuration on the host
in order to make these work.** This additional configuration is outside the
scope of Nomad.
2015-09-25 02:33:06 +00:00
2015-11-19 00:30:37 +00:00
### Allocating Ports
2015-09-25 02:33:06 +00:00
2015-11-19 00:45:39 +00:00
You can allocate ports to your task using the port syntax described on the
2016-10-28 00:36:26 +00:00
[networking page ](/docs/job-specification/network.html ). Here is a recap:
2015-09-25 02:33:06 +00:00
2016-10-03 21:35:20 +00:00
```hcl
task "example" {
driver = "docker"
2015-11-19 00:30:37 +00:00
2016-10-03 21:35:20 +00:00
resources {
network {
port "http" {}
port "https" {}
2016-07-20 11:53:57 +00:00
}
2016-10-03 21:35:20 +00:00
}
2015-11-19 00:30:37 +00:00
}
2015-09-25 02:33:06 +00:00
```
2015-11-19 00:30:37 +00:00
### Forwarding and Exposing Ports
2015-11-19 00:45:39 +00:00
A Docker container typically specifies which port a service will listen on by
specifying the `EXPOSE` directive in the `Dockerfile` .
2015-09-25 02:33:06 +00:00
2015-11-19 00:45:39 +00:00
Because dynamic ports will not match the ports exposed in your Dockerfile,
Nomad will automatically expose all of the ports it allocates to your
container.
2015-09-25 02:33:06 +00:00
2015-11-19 00:30:37 +00:00
These ports will be identified via environment variables. For example:
2015-09-25 02:33:06 +00:00
2017-06-20 00:17:40 +00:00
```hcl
2015-11-19 00:30:37 +00:00
port "http" {}
```
2015-11-19 00:45:39 +00:00
If Nomad allocates port `23332` to your task for `http` , `23332` will be
automatically exposed and forwarded to your container, and the driver will set
an environment variable `NOMAD_PORT_http` with the value `23332` that you can
read inside your container.
2015-11-19 00:30:37 +00:00
2015-11-19 00:45:39 +00:00
This provides an easy way to use the `host` networking option for better
performance.
2015-09-25 02:33:06 +00:00
2015-11-19 00:30:37 +00:00
### Using the Port Map
2015-11-19 00:45:39 +00:00
If you prefer to use the traditional port-mapping method, you can specify the
`port_map` option in your job specification. It looks like this:
2015-09-25 02:33:06 +00:00
2016-10-03 21:35:20 +00:00
```hcl
task "example" {
driver = "docker"
2015-11-19 00:30:37 +00:00
2016-10-03 21:35:20 +00:00
config {
image = "redis"
2016-03-16 16:56:04 +00:00
2016-10-03 21:35:20 +00:00
port_map {
redis = 6379
}
}
resources {
network {
mbits = 20
port "redis" {}
2015-11-19 00:30:37 +00:00
}
2016-10-03 21:35:20 +00:00
}
2015-11-19 00:30:37 +00:00
}
2015-09-25 02:33:06 +00:00
```
2015-11-19 00:45:39 +00:00
If Nomad allocates port `23332` to your task, the Docker driver will
automatically setup the port mapping from `23332` on the host to `6379` in your
container, so it will just work!
2015-11-19 00:30:37 +00:00
2015-11-19 00:45:39 +00:00
Note that by default this only works with `bridged` networking mode. It may
also work with custom networking plugins which implement the same API for
expose and port forwarding.
2015-11-19 00:30:37 +00:00
2017-06-23 22:32:47 +00:00
### Advertising Container IPs
2017-06-20 00:17:40 +00:00
*New in Nomad 0.6.*
When using network plugins like `weave` that assign containers a routable IP
address, that address will automatically be used in any `service`
advertisements for the task. You may override what address is advertised by
using the `address_mode` parameter on a `service` . See
[service ](/docs/job-specification/service.html ) for details.
2015-11-19 00:39:02 +00:00
### Networking Protocols
The Docker driver configures ports on both the `tcp` and `udp` protocols.
This is not configurable.
2015-11-19 00:30:37 +00:00
### Other Networking Modes
2015-11-19 00:45:39 +00:00
Some networking modes like `container` or `none` will require coordination
outside of Nomad. First-class support for these options may be improved later
through Nomad plugins or dynamic job configuration.
2015-09-25 02:33:06 +00:00
2016-10-19 00:36:19 +00:00
## Client Requirements
2015-09-25 02:33:06 +00:00
2015-11-18 01:20:28 +00:00
Nomad requires Docker to be installed and running on the host alongside the
2015-11-19 00:30:37 +00:00
Nomad agent. Nomad was developed against Docker `1.8.2` and `1.9` .
2015-09-25 18:29:38 +00:00
2017-07-17 18:41:50 +00:00
By default Nomad communicates with the Docker daemon using the daemon's Unix
2015-11-18 01:20:28 +00:00
socket. Nomad will need to be able to read/write to this socket. If you do not
run Nomad as root, make sure you add the Nomad user to the Docker group so
2015-09-25 02:33:06 +00:00
Nomad can communicate with the Docker daemon.
2016-07-18 14:24:30 +00:00
For example, on Ubuntu you can use the `usermod` command to add the `vagrant`
2015-11-18 01:20:28 +00:00
user to the `docker` group so you can run Nomad without root:
2015-09-25 18:29:38 +00:00
sudo usermod -G docker -a vagrant
2015-11-18 01:20:28 +00:00
For the best performance and security features you should use recent versions
of the Linux Kernel and Docker daemon.
2015-09-25 02:33:06 +00:00
2016-10-19 00:36:19 +00:00
## Client Configuration
2015-09-25 06:40:30 +00:00
2016-03-22 21:29:47 +00:00
The `docker` driver has the following [client configuration
2016-11-01 12:53:13 +00:00
options](/docs/agent/configuration/client.html#options):
2015-09-25 06:40:30 +00:00
2017-11-13 18:20:40 +00:00
* `docker.endpoint` - If using a non-standard socket, HTTP or another location,
or if TLS is being used, `docker.endpoint` must be set. If unset, Nomad will
attempt to instantiate a Docker client using the `DOCKER_HOST` environment
variable and then fall back to the default listen address for the given
2017-11-13 18:45:21 +00:00
operating system. Defaults to `unix:///var/run/docker.sock` on Unix platforms
2017-11-13 18:20:40 +00:00
and `npipe:////./pipe/docker_engine` for Windows.
2015-09-25 06:40:30 +00:00
2017-02-27 19:02:01 +00:00
* `docker.auth.config` < a id = "auth_file" ></ a > - Allows an operator to specify a
JSON file which is in the dockercfg format containing authentication
2017-05-29 10:44:13 +00:00
information for a private registry, from either (in order) `auths` ,
`credHelpers` or `credsStore` .
* `docker.auth.helper` < a id = "auth_helper" ></ a > - Allows an operator to specify
a [credsStore ](https://docs.docker.com/engine/reference/commandline/login/#credential-helper-protocol )
-like script on $PATH to lookup authentication information from external
2017-10-11 20:19:40 +00:00
sources. The script's name must begin with `docker-credential-` and this
option should include only the basename of the script, not the path.
2016-02-06 13:43:30 +00:00
2015-11-20 23:47:03 +00:00
* `docker.tls.cert` - Path to the server's certificate file (`.pem`). Specify
this along with `docker.tls.key` and `docker.tls.ca` to use a TLS client to
connect to the docker daemon. `docker.endpoint` must also be specified or
this setting will be ignored.
* `docker.tls.key` - Path to the client's private key (`.pem`). Specify this
along with `docker.tls.cert` and `docker.tls.ca` to use a TLS client to
connect to the docker daemon. `docker.endpoint` must also be specified or
this setting will be ignored.
* `docker.tls.ca` - Path to the server's CA file (`.pem`). Specify this along
with `docker.tls.cert` and `docker.tls.key` to use a TLS client to connect to
the docker daemon. `docker.endpoint` must also be specified or this setting
will be ignored.
2015-10-08 07:08:54 +00:00
* `docker.cleanup.image` Defaults to `true` . Changing this to `false` will
prevent Nomad from removing images from stopped tasks.
2017-10-16 17:08:35 +00:00
* `docker.cleanup.image.delay` A time duration, as [defined
here](https://golang.org/pkg/time/#ParseDuration), that defaults to `3m` . The
delay controls how long Nomad will wait between an image being unused and
deleting it. If a tasks is received that uses the same image within the delay,
the image will be reused.
2017-02-24 21:20:40 +00:00
2016-10-20 00:13:45 +00:00
* `docker.volumes.enabled` : Defaults to `true` . Allows tasks to bind host paths
2017-02-23 23:20:53 +00:00
(`volumes`) inside their container and use volume drivers (`volume_driver`).
Binding relative paths is always allowed and will be resolved relative to the
allocation's directory.
2016-09-27 20:13:55 +00:00
2016-06-16 20:41:02 +00:00
* `docker.volumes.selinuxlabel` : Allows the operator to set a SELinux
2016-09-27 20:13:55 +00:00
label to the allocation and task local bind-mounts to containers. If used
with `docker.volumes.enabled` set to false, the labels will still be applied
2016-10-28 00:36:26 +00:00
to the standard binds in the container.
2016-06-16 20:41:02 +00:00
2015-11-06 00:40:20 +00:00
* `docker.privileged.enabled` Defaults to `false` . Changing this to `true` will
2015-11-19 00:30:37 +00:00
allow containers to use `privileged` mode, which gives the containers full
2015-11-19 00:45:39 +00:00
access to the host's devices. Note that you must set a similar setting on the
Docker daemon for this to work.
2015-11-06 00:40:20 +00:00
2018-01-21 11:14:24 +00:00
* `docker.caps.whitelist` : A list of allowed Linux capabilities. Defaults to
`"CHOWN,DAC_OVERRIDE,FSETID,FOWNER,MKNOD,NET_RAW,SETGID,SETUID,SETFCAP,SETPCAP,NET_BIND_SERVICE,SYS_CHROOT,KILL,AUDIT_WRITE"` ,
2018-07-02 18:14:41 +00:00
which is the list of capabilities allowed by docker by default, as
2018-01-21 11:14:24 +00:00
[defined here ](https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities ).
2018-07-02 18:14:41 +00:00
Allows the operator to control which capabilities can be obtained by
tasks using `cap_add` and `cap_drop` options. Supports the value `"ALL"` as a
2018-01-23 10:30:44 +00:00
shortcut for whitelisting all capabilities.
2018-01-21 11:14:24 +00:00
2018-07-25 19:10:44 +00:00
* `docker.cleanup.container` : Defaults to `true` . This option can be used to
disable Nomad from removing a container when the task exits. Under a name
conflict, Nomad may still remove the dead container.
2015-10-08 07:08:54 +00:00
Note: When testing or using the `-dev` flag you can use `DOCKER_HOST` ,
2015-11-20 23:47:03 +00:00
`DOCKER_TLS_VERIFY` , and `DOCKER_CERT_PATH` to customize Nomad's behavior. If
`docker.endpoint` is set Nomad will **only** read client configuration from the
2016-07-18 14:24:30 +00:00
config file.
2015-10-08 07:08:54 +00:00
2016-09-28 02:12:56 +00:00
An example is given below:
2016-03-22 21:29:47 +00:00
2016-10-03 21:35:20 +00:00
```hcl
client {
2017-02-27 21:34:43 +00:00
options {
2016-10-03 21:35:20 +00:00
"docker.cleanup.image" = "false"
}
}
2016-03-22 21:29:47 +00:00
```
2016-10-19 00:36:19 +00:00
## Client Attributes
2015-09-25 02:33:06 +00:00
2015-09-25 06:40:30 +00:00
The `docker` driver will set the following client attributes:
2015-09-25 02:33:06 +00:00
2015-11-18 01:20:28 +00:00
* `driver.docker` - This will be set to "1", indicating the driver is
available.
2017-07-07 17:17:44 +00:00
* `driver.docker.bridge_ip` - The IP of the Docker bridge network if one
exists.
2016-10-03 21:00:32 +00:00
* `driver.docker.version` - This will be set to version of the docker server.
Here is an example of using these properties in a job file:
```hcl
job "docs" {
# Require docker version higher than 1.2.
constraint {
attribute = "${driver.docker.version}"
operator = ">"
version = "1.2"
}
}
```
2015-09-25 02:33:06 +00:00
## Resource Isolation
### CPU
2015-11-18 01:20:28 +00:00
Nomad limits containers' CPU based on CPU shares. CPU shares allow containers
to burst past their CPU limits. CPU limits will only be imposed when there is
2015-09-25 02:33:06 +00:00
contention for resources. When the host is under load your process may be
2017-07-17 18:41:50 +00:00
throttled to stabilize QoS depending on how many shares it has. You can see how
2015-11-18 01:20:28 +00:00
many CPU shares are available to your process by reading `NOMAD_CPU_LIMIT` .
2017-07-17 18:41:50 +00:00
1000 shares are approximately equal to 1 GHz.
2015-09-25 02:33:06 +00:00
Please keep the implications of CPU shares in mind when you load test workloads
on Nomad.
### Memory
Nomad limits containers' memory usage based on total virtual memory. This means
that containers scheduled by Nomad cannot use swap. This is to ensure that a
2015-11-18 01:20:28 +00:00
swappy process does not degrade performance for other workloads on the same
host.
2015-09-25 02:33:06 +00:00
Since memory is not an elastic resource, you will need to make sure your
container does not exceed the amount of memory allocated to it, or it will be
terminated or crash when it tries to malloc. A process can inspect its memory
limit by reading `NOMAD_MEMORY_LIMIT` , but will need to track its own memory
2017-07-17 18:41:50 +00:00
usage. Memory limit is expressed in megabytes so 1024 = 1 GB.
2015-09-25 02:33:06 +00:00
### IO
2017-07-17 18:41:50 +00:00
Nomad's Docker integration does not currently provide QoS around network or
2015-09-25 02:33:06 +00:00
filesystem IO. These will be added in a later release.
### Security
Docker provides resource isolation by way of
[cgroups and namespaces ](https://docs.docker.com/introduction/understanding-docker/#the-underlying-technology ).
2015-11-18 01:20:28 +00:00
Containers essentially have a virtual file system all to themselves. If you
need a higher degree of isolation between processes for security or other
reasons, it is recommended to use full virtualization like
[QEMU ](/docs/drivers/qemu.html ).
2016-10-11 23:50:10 +00:00
2017-09-29 00:22:25 +00:00
## Docker for Mac Caveats
2016-10-11 23:50:10 +00:00
2017-09-29 00:22:25 +00:00
Docker for Mac runs Docker inside a small VM and then allows access to parts of
2016-10-11 23:50:10 +00:00
the host filesystem into that VM. At present, nomad uses a syslog server bound to
2017-07-17 18:41:50 +00:00
a Unix socket within a path that both the host and the VM can access to forward
2016-10-11 23:50:10 +00:00
log messages back to nomad. But at present, Docker For Mac does not work for
2017-07-17 18:41:50 +00:00
Unix domain sockets (https://github.com/docker/for-mac/issues/483) in one of
2016-10-11 23:50:10 +00:00
these shared paths.
As a result, using nomad with the docker driver on OS X/macOS will work, but no
logs will be available to nomad. Users must use the native docker facilities to
examine the logs of any jobs running under docker.
In the future, we will resolve this issue, one way or another.
2017-09-29 00:22:25 +00:00
## Docker for Windows Caveats
Docker for Windows only supports running Windows containers. Because Docker for
Windows is relatively new and rapidly evolving you may want to consult the
[list of relevant issues on GitHub][WinIssues].
[WinIssues]: https://github.com/hashicorp/nomad/issues?q=is%3Aopen+is%3Aissue+label%3Adriver%2Fdocker+label%3Aplatform-windows