Skip to content

Commit

Permalink
Switch to docker compose (opencast#6088)
Browse files Browse the repository at this point in the history
The command `docker-compose` has been deprecated for a while and seems
to finally be broken now:

```
Run docker-compose up -d
  docker-compose up -d
  shell: /usr/bin/bash -e {0}
  ...
/home/runner/work/_temp/c5c18e1f-32e8-4962-bd06-9bbdb4895343.sh: line 1: docker-compose: command not found
```

This patch switches to using `docker compose` instead.

### Your pull request should…

* [x] have a concise title
* [x] [close an accompanying
issue](https://docs.opencast.org/develop/developer/#participate/development-process/#automatically-closing-issues-when-a-pr-is-merged)
if one exists
* [x] [be against the correct
branch](https://docs.opencast.org/develop/developer/development-process#acceptance-criteria-for-patches-in-different-versions)
* [x] include migration scripts and documentation, if appropriate
* [ ] pass automated tests
* [x] have a clean commit history
* [x] [have proper commit messages (title and body) for all
commits](https://medium.com/@steveamaza/e028865e5791)
  • Loading branch information
lkiesow authored Aug 5, 2024
2 parents 240d592 + a0fbaa8 commit 79413f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-opencast-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
if: matrix.java == 11
working-directory: docs/scripts/devel-dependency-containers
run: |
docker-compose up -d
docker compose up -d
- name: wait for elasticsearch to boot
if: matrix.java == 11
Expand Down

0 comments on commit 79413f2

Please sign in to comment.