rename image prefix from "saleor" to "saleor-app"

This commit is contained in:
Djkáťo 2024-05-17 16:19:39 +02:00
parent 66f8556dbe
commit 7ce567db1c
2 changed files with 4 additions and 4 deletions

View file

@ -10,14 +10,14 @@ alias = "build-containers"
workspace = false workspace = false
script = ''' script = '''
PKG_VER=$(cargo pkgid --package=sitemap-generator | cut -d "#" -f2) 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] [tasks.build-simple-payment-gateway]
workspace = false workspace = false
script = ''' script = '''
PKG_VER=$(cargo pkgid --package=simple-payment-gateway | cut -d "#" -f2) 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] [tasks.build-containers]

View file

@ -19,7 +19,7 @@ Simply add the package to your `docker-compose.yml`, for example like so:
```yml ```yml
services: services:
app-payment-gateway: 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: env_file:
- docker-gateway.env - docker-gateway.env
networks: networks:
@ -30,7 +30,7 @@ services:
- 3001:3001 - 3001:3001
app-sitemap-generator: 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: env_file:
- docker-sitemap.env - docker-sitemap.env
networks: networks: