Skip to content

Commit

Permalink
rename image prefix from "saleor" to "saleor-app"
Browse files Browse the repository at this point in the history
  • Loading branch information
djkato committed May 17, 2024
1 parent 66f8556 commit 7ce567d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 7ce567d

Please sign in to comment.