From 7ce567db1c2d5c8905f2d09ebfd54f0bebd2a464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Djk=C3=A1=C5=A5o?= Date: Fri, 17 May 2024 16:19:39 +0200 Subject: [PATCH] rename image prefix from "saleor" to "saleor-app" --- Makefile.toml | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.toml b/Makefile.toml index 8038890..91ce8b6 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -10,14 +10,14 @@ alias = "build-containers" workspace = false script = ''' PKG_VER=$(cargo pkgid --package=sitemap-generator | cut -d "#" -f2) -docker build --rm --target chef-sitemap-generator . -t ghcr.io/djkato/saleor-sitemap-generator:${PKG_VER} +docker build --rm --target chef-sitemap-generator . -t ghcr.io/djkato/saleor-app-sitemap-generator:${PKG_VER} ''' [tasks.build-simple-payment-gateway] workspace = false script = ''' PKG_VER=$(cargo pkgid --package=simple-payment-gateway | cut -d "#" -f2) -docker build --rm --target chef-simple-payment-gateway . -t ghcr.io/djkato/saleor-simple-payment-gateway:${PKG_VER} +docker build --rm --target chef-simple-payment-gateway . -t ghcr.io/djkato/saleor-app-simple-payment-gateway:${PKG_VER} ''' [tasks.build-containers] diff --git a/README.md b/README.md index 16c7478..1daf825 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Simply add the package to your `docker-compose.yml`, for example like so: ```yml services: app-payment-gateway: - image: ghcr.io/djkato/saleor-simple-payment-gateway:0.1.1 + image: ghcr.io/djkato/saleor-app-simple-payment-gateway:0.1.1 env_file: - docker-gateway.env networks: @@ -30,7 +30,7 @@ services: - 3001:3001 app-sitemap-generator: - image: ghcr.io/djkato/saleor-sitemap-generator:0.1.0 + image: ghcr.io/djkato/saleor-app-sitemap-generator:0.1.0 env_file: - docker-sitemap.env networks: