From 99e763c1d88d925babaae312d4e5b251de6ed8c9 Mon Sep 17 00:00:00 2001 From: "OP (oppenheimer)" <21008429+Ompragash@users.noreply.github.com> Date: Thu, 5 Dec 2024 11:53:14 +0530 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8bf7278..2a60155 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ go build Build the docker image with the following commands: ``` -docker build -t drillster/drone-email:latest . +docker build -t plugins/email:latest . ``` Build the docker for ARM with buildx @@ -29,7 +29,7 @@ docker buildx use mybuilder docker buildx build --file Dockerfile.armhf --platform linux/arm64/v7,linux/arm64 -t drone-email:latest . ``` -This will create a Docker image called `drillster/drone-email:latest`. +This will create a Docker image called `plugins/email:latest`. Please note incorrectly building the image for the correct x64 linux and with GCO disabled will result in an error when running the Docker image: ``` @@ -59,5 +59,5 @@ docker run --rm \ -e DRONE_COMMIT_MESSAGE="Hello world!" \ -v $(pwd):$(pwd) \ -w $(pwd) \ - drillster/drone-email + plugins/email ```