docs/en/guides/docker-quickstart.md
This guide serves as a comprehensive introduction to setting up a Docker environment for your Ultralytics projects. Docker is a platform for developing, shipping, and running applications in containers. It is particularly beneficial for ensuring that the software will always run the same, regardless of where it's deployed. For more details, visit the Ultralytics Docker repository on Docker Hub.
<strong>Watch:</strong> How to Get started with Docker | Usage of Ultralytics Python Package inside Docker live demo 🎉
</p>First, verify that the NVIDIA drivers are properly installed by running:
nvidia-smi
Now, let's install the NVIDIA Container Toolkit to enable GPU support in Docker containers:
=== "Ubuntu/Debian"
```bash
curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \
&& curl -s -L https://nvidia.github.io/libnvidia-container/stable/deb/nvidia-container-toolkit.list \
| sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' \
| sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list
```
Update the package lists and install the NVIDIA Container Toolkit:
```bash
sudo apt-get update
```
```bash
sudo apt-get install -y nvidia-container-toolkit
```
=== "RHEL/CentOS/Fedora/Amazon Linux"
```bash
curl -s -L https://nvidia.github.io/libnvidia-container/stable/rpm/nvidia-container-toolkit.repo \
| sudo tee /etc/yum.repos.d/nvidia-container-toolkit.repo
```
```bash
sudo dnf install -y nvidia-container-toolkit
```
Run nvidia-ctk cdi list to ensure the GPU CDI devices are available (the toolkit's nvidia-cdi-refresh service generates and maintains the spec automatically on toolkit >= 1.18):
nvidia-ctk cdi list
You should see entries such as nvidia.com/gpu=0 and nvidia.com/gpu=all. Discovered CDI devices also appear in docker info.
Ultralytics publishes the following images to Docker Hub. Each image is built from its linked Dockerfile by the Docker publishing workflow.
| Tag | Platform and purpose | Source |
|---|---|---|
latest | Linux AMD64 with CUDA for GPU training and inference | Dockerfile |
latest-export | Linux AMD64 with CUDA and export dependencies for conversion and benchmarking | Dockerfile-export |
latest-python | Lightweight Linux AMD64 Python image for CPU inference | Dockerfile-python |
latest-python-export | Linux AMD64 CPU image with export dependencies | Dockerfile-python-export |
latest-cpu | Linux AMD64 CPU image with Bash as the default command | Dockerfile-cpu |
latest-jupyter | Linux AMD64 CPU image with JupyterLab and Ultralytics tutorial notebooks | Dockerfile-jupyter |
latest-arm64 | Linux ARM64 CPU image for Apple silicon, Raspberry Pi, and other ARM64 systems | Dockerfile-arm64 |
latest-nvidia-arm64 | Linux ARM64 with NVIDIA GPU support for Jetson AGX Thor, DGX Spark, JetPack 7, and DGX OS | Dockerfile-nvidia-arm64 |
latest-jetson-jetpack6 | Linux ARM64 for NVIDIA Jetson devices running JetPack 6 | Dockerfile-jetson-jetpack6 |
latest-jetson-jetpack5 | Linux ARM64 for NVIDIA Jetson devices running JetPack 5 | Dockerfile-jetson-jetpack5 |
latest-jetson-jetpack4 | Linux ARM64 for NVIDIA Jetson devices running JetPack 4 | Dockerfile-jetson-jetpack4 |
latest-runner | Linux AMD64 CUDA image for a self-hosted GitHub Actions GPU runner | Dockerfile-runner |
latest-runner-cpu | Linux AMD64 image for a self-hosted GitHub Actions CPU runner | Dockerfile-runner-cpu |
Tags beginning with latest track the most recently published main-branch build. Versioned tags replace the latest prefix with an Ultralytics release, such as VERSION, VERSION-cpu, or VERSION-jetson-jetpack6. Use a versioned tag for a reproducible environment.
To pull the latest image:
# Pull the latest Ultralytics image from Docker Hub
sudo docker pull ultralytics/ultralytics:latest
Here's how to execute the Ultralytics Docker container:
# Run without GPU
sudo docker run -it --ipc=host ultralytics/ultralytics:latest-cpu
# Run with all GPUs
sudo docker run -it --ipc=host --device nvidia.com/gpu=all ultralytics/ultralytics:latest
# Run specifying which GPUs to use
sudo docker run -it --ipc=host --device nvidia.com/gpu=2 --device nvidia.com/gpu=3 ultralytics/ultralytics:latest
The -it flag assigns a pseudo-TTY and keeps stdin open, allowing you to interact with the container. The --ipc=host flag enables sharing of host's IPC namespace, essential for sharing memory between processes. The --device nvidia.com/gpu=... flag grants the container access to the host's GPUs through CDI.
!!! warning "Use CDI instead of --gpus all"
On Linux, CDI device requests require [Docker >= 28.2.0](https://docs.docker.com/engine/release-notes/28/#2820) (CDI enabled by default) and `nvidia-container-toolkit` >= 1.18 (automatic CDI spec generation). Upgrade older Linux hosts before running GPU containers. The legacy `--gpus all` flag can lose GPU access (`Failed to initialize NVML: Unknown Error`) when the host reloads systemd during routine package updates ([nvidia-container-toolkit#48](https://github.com/NVIDIA/nvidia-container-toolkit/issues/48)). CDI `--device` requests include the device nodes in the container configuration, so long-running containers such as training workers or CI runners keep GPU access across reloads.
[Docker Desktop GPU support on Windows](https://docs.docker.com/desktop/features/gpu/) currently uses `--gpus all` with the WSL 2 backend because NVIDIA CDI devices are not available there. Windows does not use Linux systemd, so the daemon-reload failure above does not apply.
To work with files on your local machine within the container, you can use Docker volumes:
# Mount a local directory into the container
sudo docker run -it --ipc=host --device nvidia.com/gpu=all -v /path/on/host:/path/in/container ultralytics/ultralytics:latest
Replace /path/on/host with the directory path on your local machine and /path/in/container with the desired path inside the Docker container.
Training outputs save to /ultralytics/runs/<task>/<name>/ inside the container by default. Without mounting a host directory, outputs are lost when the container is removed.
To persist training outputs:
# Recommended: mount workspace and specify project path
sudo docker run --rm -it -v "$(pwd)":/w -w /w ultralytics/ultralytics:latest \
yolo train model=yolo26n.pt data=coco8.yaml project=/w/runs
This saves all training outputs to ./runs on your host machine.
!!! danger "Highly Experimental - User Assumes All Risk"
The following instructions are experimental. Sharing a X11 socket with a Docker container poses potential security risks. Therefore, it's recommended to test this solution only in a controlled environment. For more information, refer to these resources on how to use `xhost`<sup>[(1)](http://users.stat.umn.edu/~geyer/secure.html)[(2)](https://linux.die.net/man/1/xhost)</sup>.
Docker is primarily used to containerize background applications and CLI programs, but it can also run graphical programs. In the Linux world, two main graphic servers handle graphical display: X11 (also known as the X Window System) and Wayland. Before starting, it's essential to determine which graphics server you are currently using. Run this command to find out:
env | grep -E -i 'x11|xorg|wayland'
Setup and configuration of an X11 or Wayland display server is outside the scope of this guide. If the above command returns nothing, then you'll need to start by getting either working for your system before continuing.
!!! example
??? info "Use GPUs"
If you're using [GPUs](#using-gpus), you can add the `--device nvidia.com/gpu=all` flag to the command.
=== "X11"
If you're using X11, you can run the following command to allow the Docker container to access the X11 socket:
```bash
xhost +local:docker && docker run -e DISPLAY=$DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v ~/.Xauthority:/root/.Xauthority \
-it --ipc=host ultralytics/ultralytics:latest
```
This command sets the `DISPLAY` environment variable to the host's display, mounts the X11 socket, and maps the `.Xauthority` file to the container. The `xhost +local:docker` command allows the Docker container to access the X11 server.
=== "Wayland"
For Wayland, use the following command:
```bash
xhost +local:docker && docker run -e DISPLAY=$DISPLAY \
-v $XDG_RUNTIME_DIR/$WAYLAND_DISPLAY:/tmp/$WAYLAND_DISPLAY \
--net=host -it --ipc=host ultralytics/ultralytics:latest
```
This command sets the `DISPLAY` environment variable to the host's display, mounts the Wayland socket, and allows the Docker container to access the Wayland server.
Now you can display graphical applications inside your Docker container. For example, you can run the following CLI command to visualize the predictions from a YOLO26 model:
yolo predict model=yolo26n.pt show=True
??? info "Testing"
A simple way to validate that the Docker group has access to the X11 server is to run a container with a GUI program like [`xclock`](https://xorg.freedesktop.org/archive/X11R6.8.1/doc/xclock.1.html) or [`xeyes`](https://xorg.freedesktop.org/archive/X11R7.5/doc/man/man1/xeyes.1.html). Alternatively, you can also install these programs in the Ultralytics Docker container to test the access to the X11 server of your GNU-Linux display server. If you run into any problems, consider setting the environment variable `-e QT_DEBUG_PLUGINS=1`. Setting this environment variable enables the output of debugging information, aiding in the troubleshooting process.
!!! warning "Revoke access"
In both cases, don't forget to revoke access from the Docker group when you're done.
```bash
xhost -local:docker
```
??? question "Want to view image results directly in the Terminal?"
Refer to the following guide on [viewing the image results using a terminal](./view-results-in-terminal.md)
You are now set up to use Ultralytics with Docker and ready to take advantage of its capabilities. To self-host the Ultralytics web application, see the Platform On-Premise guide. For alternative Python package installation methods, see the Ultralytics quickstart documentation.
To set up Ultralytics with Docker, first ensure that Docker is installed on your system. If you have an NVIDIA GPU, install the NVIDIA Container Toolkit to enable GPU support. Then, pull the latest Ultralytics Docker image from Docker Hub using the following command:
sudo docker pull ultralytics/ultralytics:latest
For detailed steps, refer to our Docker Quickstart Guide.
Using Ultralytics Docker images ensures a consistent environment across different machines, replicating the same software and dependencies. This is particularly useful for collaborating across teams, running models on various hardware, and maintaining reproducibility. Use latest for general NVIDIA GPU training or select the image matching your JetPack version for an NVIDIA Jetson device. See the complete image table or explore Ultralytics Docker Hub.
First, ensure that the NVIDIA Container Toolkit is installed and configured. Then, use the following command to run Ultralytics YOLO with GPU support:
sudo docker run -it --ipc=host --device nvidia.com/gpu=all ultralytics/ultralytics:latest # all GPUs
This command sets up a Docker container with GPU access. For additional details, see the Docker Quickstart Guide.
To visualize YOLO prediction results with a GUI in a Docker container, you need to allow Docker to access your display server. For systems running X11, the command is:
xhost +local:docker && docker run -e DISPLAY=$DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v ~/.Xauthority:/root/.Xauthority \
-it --ipc=host ultralytics/ultralytics:latest
For systems running Wayland, use:
xhost +local:docker && docker run -e DISPLAY=$DISPLAY \
-v $XDG_RUNTIME_DIR/$WAYLAND_DISPLAY:/tmp/$WAYLAND_DISPLAY \
--net=host -it --ipc=host ultralytics/ultralytics:latest
More information can be found in the Run graphical user interface (GUI) applications in a Docker Container section.
Yes, you can mount local directories into the Ultralytics Docker container using the -v flag:
sudo docker run -it --ipc=host --device nvidia.com/gpu=all -v /path/on/host:/path/in/container ultralytics/ultralytics:latest
Replace /path/on/host with the directory on your local machine and /path/in/container with the desired path inside the container. This setup allows you to work with your local files within the container. For more information, refer to the Note on File Accessibility section.