Skip to content

Commit

Permalink
Update docker compose command name for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpm committed Nov 26, 2024
1 parent a227e97 commit 759dc08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit 759dc08

Please sign in to comment.