Add docker-compose installation to GitHub Workflow

The GitHub Workflow (docker.yml) now includes a step for installing docker-compose. This addition ensures that docker-compose is available within the Docker container, which is necessary for performing complex multi-container tasks. The installation process involves updating the package list, installing docker-compose, and verifying its location.
This commit is contained in:
Winni Neessen 2024-03-13 23:36:37 +01:00
parent 6987fdd8af
commit a9b0f3b32b
Signed by: wneessen
GPG key ID: 5F3AF39B820C119D

View file

@ -29,6 +29,9 @@ jobs:
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Install docker-compose
run: |
apt-get update; apt-get -y install docker-compose; which docker-compose
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub