--- title: "Docker" description: "Install Tracer within your Docker under two minutes" --- For optimal Docker performance, we recommend a system with at least **4 CPU cores** and **8GB RAM**, running Docker Desktop or Docker Engine on Linux Ubuntu 22.04 or higher. ## Prerequisites Make sure you have Docker installed on your system. If not, please install it first: Apple Apple **Docker Desktop for Mac**
Install Docker Desktop on macOS
Ubuntu Ubuntu **Docker Engine for Ubuntu**
Install Docker Engine on Ubuntu
## 1. Pull the Tracer Docker image Run the following command to pull the latest Tracer Docker image: ```bash docker pull tracercloud/tracer:latest ``` ## 2. Run the Tracer container Start a Tracer container with the following command: ```bash docker run -d --rm \ --name tracer \ --privileged \ --pid=host \ -p 8080:8080 \ -v /lib/modules:/lib/modules:ro \ -v /usr/src:/usr/src:ro \ -v /sys/kernel/debug:/sys/kernel/debug:rw \ -v /sys/kernel/btf/vmlinux:/sys/kernel/btf/vmlinux:ro \ tracercloud/tracer:latest ``` ## 3. Access Tracer Tracer Logo Tracer Logo
Once the container is running, you can access Tracer
View real-time metrics, resource usage, and performance insights for your pipeline runs.