From 0890de10b9d4d0f3c6d93d5ba32e7705755ddc18 Mon Sep 17 00:00:00 2001 From: Grzegorz Latosinski Date: Sat, 2 Mar 2024 23:24:37 +0100 Subject: [PATCH] examples: mask_rcnn: Updated name of the Docker image Signed-off-by: Grzegorz Latosinski --- examples/mask_rcnn/README.md | 8 +------- examples/mask_rcnn/build-docker.sh | 2 +- examples/mask_rcnn/run-docker.sh | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/examples/mask_rcnn/README.md b/examples/mask_rcnn/README.md index a76ec13..48b13e9 100644 --- a/examples/mask_rcnn/README.md +++ b/examples/mask_rcnn/README.md @@ -27,13 +27,7 @@ The image contains: * CUDNN and CUDA libraries for faster acceleration on GPUs * Additional development tools -Docker image can be pulled from the Docker registry using: - -```bash -docker pull ghcr.io/antmicro/ros2-vision-node-base:vision-node-base -``` - -Alternatively, the image can be built manually with [build-docker.sh](./build-docker.sh) script: +Docker image containing all necessary dependencies can be built with: ```bash sudo ./build-docker.sh diff --git a/examples/mask_rcnn/build-docker.sh b/examples/mask_rcnn/build-docker.sh index 759075c..310f215 100755 --- a/examples/mask_rcnn/build-docker.sh +++ b/examples/mask_rcnn/build-docker.sh @@ -8,7 +8,7 @@ set -e -DOCKER_TAG=${DOCKER_TAG:-ghcr.io/antmicro/ros2-vision-node-base:vision-node-base} +DOCKER_TAG=${DOCKER_TAG:-ros2-vision-node-base} SCRIPTDIR=$(dirname "$(realpath "$0")") diff --git a/examples/mask_rcnn/run-docker.sh b/examples/mask_rcnn/run-docker.sh index 5bfc726..dd87bff 100755 --- a/examples/mask_rcnn/run-docker.sh +++ b/examples/mask_rcnn/run-docker.sh @@ -8,7 +8,7 @@ set -e -DOCKER_IMAGE=${DOCKER_IMAGE:-ghcr.io/antmicro/ros2-vision-node-base:vision-node-base} +DOCKER_IMAGE=${DOCKER_IMAGE:-ros2-vision-node-base} docker run -it \ -v "$(pwd)":/data \