Skip to content

Commit

Permalink
fix: replace old container image name with new repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
Its-Alex committed Jul 5, 2024
1 parent 3e77215 commit 6dcb5fc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Send mails with mjml Template and JSON Schema.

- Project status: [POC](https://en.wikipedia.org/wiki/Proof_of_concept)
- Screencast: https://youtu.be/9oih7cZTjk4
- Docker Image: https://hub.docker.com/r/stephaneklein/gibbon-mail (Automated Builds configured on `master` branch)
- Docker Image: https://hub.docker.com/r/gibbonlab/gibbon-mail (Automated Builds configured on `master` branch)

To generate PDF instead send mails, see this project: [gibbon-pdf](https://github.com/stephane-klein/gibbon-pdf)

Expand Down Expand Up @@ -61,7 +61,7 @@ $ direnv allow
- [x] Integrate [`mjmlio/mjml`](https://github.com/mjmlio/mjml)
- [x] Send mails with [nodemailer](https://nodemailer.com)
- [x] Add [mailhog](https://github.com/mailhog/MailHog) to test
- [x] Docker Image (`stephaneklein/gibbon-mail:latest`)
- [x] Docker Image (`gibbonlab/gibbon-mail:latest`)
- [x] curl example
- [x] Screencast
- [x] Swagger
Expand Down Expand Up @@ -250,7 +250,7 @@ Configure `BCC` variable env as below example to send all mails send by Gibbon-m
version: "3.7"
services:
gibbon-mail:
image: stephaneklein/gibbon-mail:latest
image: gibbonlab/gibbon-mail:latest
ports:
- 5000:5000
volumes:
Expand All @@ -274,7 +274,7 @@ Gibbon-mail support two smtp server configuration, for instance:
version: "3.7"
services:
gibbon-mail:
image: stephaneklein/gibbon-mail:latest
image: gibbonlab/gibbon-mail:latest
ports:
- 5000:5000
volumes:
Expand Down
2 changes: 1 addition & 1 deletion backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Send mails with mjml Template and JSON Schema.

- Project status: [POC](https://en.wikipedia.org/wiki/Proof_of_concept)
- Screencast: https://youtu.be/9oih7cZTjk4
- Docker Image: https://hub.docker.com/r/stephaneklein/gibbon-mail (Automated Builds configured on `master` branch)
- Docker Image: https://hub.docker.com/r/gibbonlab/gibbon-mail (Automated Builds configured on `master` branch)

To generate PDF instead send mails, see this project: [gibbon-pdf](https://github.com/stephane-klein/gibbon-pdf)

Expand Down
2 changes: 1 addition & 1 deletion docker-image/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ cd $(dirname "$0")

(
cd ..
docker build . -f docker-image/Dockerfile -t stephaneklein/gibbon-mail:latest
docker build . -f docker-image/Dockerfile -t gibbonlab/gibbon-mail:latest
)
2 changes: 1 addition & 1 deletion docker-image/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.7"
services:
gibbon-mail:
image: stephaneklein/gibbon-mail:latest
image: gibbonlab/gibbon-mail:latest
ports:
- 5000:5000
volumes:
Expand Down

0 comments on commit 6dcb5fc

Please sign in to comment.