Skip to content

Commit da9fe95

Browse files
author
Eyo Chen
committed
fix: install docker compose
1 parent 8a53387 commit da9fe95

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ jobs:
1919
with:
2020
install: true
2121

22+
- name: Install Docker Compose
23+
run: |
24+
sudo curl -L "https://github.com/docker/compose/releases/download/v2.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
25+
sudo chmod +x /usr/local/bin/docker-compose
26+
docker-compose --version
27+
28+
- name: Start Docker Compose services
29+
run: |
30+
docker-compose up -d
31+
env:
32+
COMPOSE_DOCKER_CLI_BUILD: 1
33+
DOCKER_BUILDKIT: 1
34+
2235
- name: Set up Python
2336
uses: actions/setup-python@v5
2437
with:

0 commit comments

Comments
 (0)