mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-22 05:40:51 +01:00
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:
parent
6987fdd8af
commit
a9b0f3b32b
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue