docker run -d <image>

Meaning: Runs the container in detached mode, meaning it runs in the background. Usage: Useful for running containers without blocking your terminal. Example: docker run -d nginx runs an nginx container in the background.