Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retrying subscription transactions with increasing delays #90

Merged
merged 5 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update docker compose command name for CI
  • Loading branch information
alecpm committed Nov 26, 2024
commit 759dc0810bf6da0f7a984dd81aa999c898fb2678
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
- name: Build jazkarta.shop docker image
run: docker build . -t jazkarta.shop
env:
DOCKER_BUILDKIT: "1"
DOCKER_BUILDKIT: "1"

- name: Start Plone server
run: docker-compose up -d
run: docker compose up -d
env:
DOCKER_BUILDKIT: "1"
DOCKER_BUILDKIT: "1"

- name: Check that jazkarta.shop was installed
run: curl --fail -v http://localhost:8080/Plone/review-cart
Expand All @@ -39,4 +39,4 @@ jobs:

- name: Print plone server logs
if: always() # This step should be also run when a previous step failed
run: docker-compose logs plone
run: docker compose logs plone
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
- data:/data
ports:
- "8100"
# The `dummy` service is here to make sure `docker-compose up` exits only when
# The `dummy` service is here to make sure `docker compose up` exits only when
# `plone`'s health is `healthy`.
dummy:
image: busybox
Expand Down
Loading