Install Determined Using Docker#
This user guide provides step-by-step instructions for installing Determined using Docker.
Preliminary Setup#
Install Docker on all machines in the cluster. If the agent machines have GPUs, ensure that the NVIDIA Container Toolkit on each one is working as expected.
Pull the official Docker image for PostgreSQL. PostgreSQL version 10 and later is supported.
docker pull postgres:14
This image is not provided by Determined AI; please see its Docker Hub page for more information.
Pull the Docker image for the master or agent on each machine where these services will run. There is a single master container running in a Determined cluster, and typically there is one agent container running on a given machine. A single machine can host both the master container and an agent container. Run the commands below, replacing
VERSION
with a valid Determined version, such as the current version, 0.35.1:docker pull determinedai/determined-master:VERSION docker pull determinedai/determined-agent:VERSION
Configure and Start the Cluster#
Start the PostgreSQL Container#
Run the following command to start the PostgreSQL container:
docker run \
--name determined-db \
-p 5432:5432 \
-v determined_db:/var/lib/postgresql/data \
-e POSTGRES_DB=determined \
-e POSTGRES_PASSWORD=<DB password> \
postgres:14
In order to expose the port only on the master machine’s loopback network interface, pass -p
127.0.0.1:5432:5432
instead of -p 5432:5432
. If you choose to run in host networking mode,
pass --network host
instead of -p 5432:5432
.
Start the Determined Master#
Determined master configuration values can come from a file, environment variables, or command-line arguments.
To start the master with a configuration file, we recommend starting from our default master
configuration file,
which contains a listing of the available options and descriptions for them. Download and edit the
master.yaml
configuration file as appropriate and start the master container with the edited
configuration:
docker run \
-v "$PWD"/master.yaml:/etc/determined/master.yaml \
determinedai/determined-master:VERSION
To start the master with environment variables instead of a configuration file:
docker run \
--name determined-master \
-p 8080:8080 \
-e DET_DB_HOST=<PostgreSQL hostname or IP> \
-e DET_DB_NAME=determined \
-e DET_DB_PORT=5432 \
-e DET_DB_USER=postgres \
-e DET_DB_PASSWORD=<DB password> \
determinedai/determined-master:VERSION
Regarding the hostname for PostgreSQL, if the determined-db
container and the
determined-master
container are running on the same machine, you may find it easier to run both
of them with host networking (--network host
) and use 127.0.0.1
here.
In order to prevent the master from listening on port 8080 on all network interfaces on the master
machine, you may specify the loopback interface in the published port mapping, i.e., -p
127.0.0.1:8080:8080
.
Start the Determined Agents#
Similar to the master configuration, Determined agent configuration values can come from a file, environment variables, or command-line arguments.
To start the agent with a configuration file, we recommend starting from our default agent
configuration file,
which contains a listing of the available options and descriptions for them. Download and edit the
agent.yaml
configuration file as appropriate and start the agent container with the edited
configuration:
docker run \
-v /var/run/docker.sock:/var/run/docker.sock \
-v "$PWD"/agent.yaml:/etc/determined/agent.yaml \
determinedai/determined-agent:VERSION
The agent container must bind mount the host’s Docker daemon socket. This allows the agent container to orchestrate the containers that execute trials and other tasks.
If you are providing command-line arguments to the container (e.g., using --master-port
as
opposed to the DET_MASTER_PORT
environment variable), run
must be provided as the first
argument:
docker run \
-v /var/run/docker.sock:/var/run/docker.sock \
-v "$PWD"/agent.yaml:/etc/determined/agent.yaml \
determinedai/determined-agent:VERSION \
run --master-port=8080
To start an agent container with environment variables instead of a configuration file:
docker run \
-v /var/run/docker.sock:/var/run/docker.sock \
--name determined-agent \
-e DET_MASTER_HOST=<Determined master hostname or IP> \
-e DET_MASTER_PORT=8080 \
determinedai/determined-agent:VERSION
Note
Agents and Master on Different Machines: If your agents and master are on different machines, the Determined master hostname or IP address should be set to a value that allows your agent machines to connect to the master machine.
Agents and Master on the Same Machine: If your agents and master are on the same machine,
using 127.0.0.1
typically will not work unless both the master and agent containers were
started with --network host
. If the --network host
option is used, you must also
configure workload containers to use host
network mode, as described below. Alternatively, if the master machine has a static IP address from your router,
you can use that. The key is ensuring that the master machine can be reliably addressed from both
inside and outside of Docker containers.
The --gpus
flag should be used to specify which GPUs the agent container will have access to;
without it, the agent will not have access to any GPUs. For example:
# Use all GPUs.
docker run --gpus all ...
# Use any four GPUs (selected by Docker).
docker run --gpus 4 ...
# Use the GPUs with the given IDs or UUIDs.
docker run --gpus '"device=1,3"' ...
GPUs can also be disabled and enabled at runtime using the det slot disable
and det slot
enable
CLI commands, respectively.
Docker Networking for Master, Agents, and Workloads#
As with any Docker container, the networking mode of the master and agent containers can be changed
using the --network
option to docker run
. In particular, host mode networking (--network
host
) can be useful to optimize performance and in situations where a container needs to handle a
large range of ports, as it does not require network address translation (NAT) and no
“userland-proxy” is created for each port.
Note
if you want to run workload containers in host networking mode, you will have to configure the
task_container_defaults
in the master.yaml; the --network
argument to master or agent containers will not affect how the workload containers are lauched.
The host networking driver only works on Linux hosts, and is not supported on Docker Desktop for Mac, Docker Desktop for Windows, or Docker EE for Windows Server.
See Docker’s documentation for more details.
Note
Even if you run the agents in a named Docker network (e.g. --network my-named-network
), the
workloads launched by the agent will execute in a different Docker network. This difference in
networks will affect address resolution if you attempt to set the master hostname as the master’s
container name, because the workload containers will not be able to reach the master using that
name.
Manage the Cluster#
By default, docker run
will run in the foreground, so that a container can be stopped simply by
pressing Control-C. If you wish to keep Determined running for the long term, consider running the
containers detached
and/or with restart policies. Using our
deployment tool is also an option.