diff --git a/docker/Makefile b/docker/Makefile index 270e1be2..132e07af 100644 --- a/docker/Makefile +++ b/docker/Makefile @@ -4,7 +4,7 @@ SHELL := /bin/bash DIR := $(shell echo $(shell cd "$(shell dirname "${BASH_SOURCE[0]}" )" && pwd )) VERSION ?= latest -IMAGE_NAME ?= radare/cutter +IMAGE_NAME ?= radareorg/cutter CONTAINER_NAME ?= cutter # This will output the help for each task @@ -16,8 +16,6 @@ help: ## This help .DEFAULT_GOAL := help - -# DOCKER TASKS # Build the container build: ## Build the container sudo docker build --rm -t $(IMAGE_NAME) . diff --git a/docker/README.md b/docker/README.md index 167101a0..254b69b5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -18,7 +18,7 @@ sudo docker run \ -v $PWD/sharedFolder:/var/sharedFolder \ -v $PWD/radare2rc:/home/r2/.radare2rc \ -v $PWD/r2-config:/home/r2/.config/radare2 \ - radare/cutter:latest + radareorg/cutter:latest ``` or by using the `Makefile` (after additional configuration to make it fit your needs) by executing `make build` and `make run`.