From 632559b1e6ac06c6083d7766a282b5796f53b7da Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sun, 29 May 2022 20:43:01 +0200 Subject: [PATCH] Add Dockerfile descriptions (#8031) --- utils/docker/Dockerfile | 2 ++ utils/docker/Dockerfile-arm64 | 3 ++- utils/docker/Dockerfile-cpu | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/utils/docker/Dockerfile b/utils/docker/Dockerfile index 7c1e5e8..284a4fc 100644 --- a/utils/docker/Dockerfile +++ b/utils/docker/Dockerfile @@ -1,4 +1,6 @@ # YOLOv5 🚀 by Ultralytics, GPL-3.0 license +# Builds ultralytics/yolov5:latest image on DockerHub https://hub.docker.com/r/ultralytics/yolov5 +# Image is CUDA-optimized for YOLOv5 single/multi-GPU training and inference # Start FROM NVIDIA PyTorch image https://ngc.nvidia.com/catalog/containers/nvidia:pytorch FROM nvcr.io/nvidia/pytorch:22.04-py3 diff --git a/utils/docker/Dockerfile-arm64 b/utils/docker/Dockerfile-arm64 index 56810ca..2e26105 100644 --- a/utils/docker/Dockerfile-arm64 +++ b/utils/docker/Dockerfile-arm64 @@ -1,5 +1,6 @@ # YOLOv5 🚀 by Ultralytics, GPL-3.0 license -# aarch64-compatible YOLOv5 Docker image for use with Apple M1 and other ARM architectures like Jetson Nano and Raspberry Pi +# Builds ultralytics/yolov5:latest-arm64 image on DockerHub https://hub.docker.com/r/ultralytics/yolov5 +# Image is aarch64-compatible for Apple M1 and other ARM architectures i.e. Jetson Nano and Raspberry Pi # Start FROM Ubuntu image https://hub.docker.com/_/ubuntu FROM arm64v8/ubuntu:20.04 diff --git a/utils/docker/Dockerfile-cpu b/utils/docker/Dockerfile-cpu index 8892812..c8aa8c6 100644 --- a/utils/docker/Dockerfile-cpu +++ b/utils/docker/Dockerfile-cpu @@ -1,4 +1,6 @@ # YOLOv5 🚀 by Ultralytics, GPL-3.0 license +# Builds ultralytics/yolov5:latest-cpu image on DockerHub https://hub.docker.com/r/ultralytics/yolov5 +# Image is CPU-optimized for ONNX, OpenVINO and PyTorch YOLOv5 deployments # Start FROM Ubuntu image https://hub.docker.com/_/ubuntu FROM ubuntu:20.04