rename image prefix from "saleor" to "saleor-app"
This commit is contained in:
parent
66f8556dbe
commit
7ce567db1c
2 changed files with 4 additions and 4 deletions
|
@ -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]
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue