summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorEmilien Devos <4016501+unixfox@users.noreply.github.com>2024-08-13 15:02:02 +0200
committerEmilien Devos <4016501+unixfox@users.noreply.github.com>2024-08-13 15:02:02 +0200
commit4b8bfe1201ab84617f0335054dea7d2334fd7418 (patch)
tree7f33e4e13006b98f6bd904c3c556e94c511d40a6 /.github
parent5e38ef59da10cc0bfc16bb30e4006cdb70171deb (diff)
downloadinvidious-4b8bfe1201ab84617f0335054dea7d2334fd7418.tar.gz
invidious-4b8bfe1201ab84617f0335054dea7d2334fd7418.tar.bz2
invidious-4b8bfe1201ab84617f0335054dea7d2334fd7418.zip
use docker compose instead of docker-compose for CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 925a8fc7..de538915 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -90,10 +90,10 @@ jobs:
- uses: actions/checkout@v4
- name: Build Docker
- run: docker-compose build --build-arg release=0
+ run: docker compose build --build-arg release=0
- name: Run Docker
- run: docker-compose up -d
+ run: docker compose up -d
- name: Test Docker
run: while curl -Isf http://localhost:3000; do sleep 1; done