Skip to content

Commit 9204a09

Browse files
committed
Update CI to use docker-compose v2
1 parent a9cae09 commit 9204a09

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
run: |
6767
cp .env.sample .env
6868
mkdir -p ${DOCSRS_PREFIX}/public-html
69-
docker-compose up -d db s3
69+
docker compose up -d db s3
7070
# Give the database enough time to start up
7171
sleep 5
7272
# Make sure the database is actually working
@@ -82,7 +82,7 @@ jobs:
8282
done
8383
8484
- name: Clean up the database
85-
run: docker-compose down --volumes
85+
run: docker compose down --volumes
8686

8787
build_tests:
8888
runs-on: ubuntu-latest
@@ -101,7 +101,7 @@ jobs:
101101
run: |
102102
cp .env.sample .env
103103
mkdir -p ${DOCSRS_PREFIX}/public-html
104-
docker-compose up -d db s3
104+
docker compose up -d db s3
105105
# Give the database enough time to start up
106106
sleep 5
107107
# Make sure the database is actually working
@@ -119,7 +119,7 @@ jobs:
119119
done
120120
121121
- name: Clean up the database
122-
run: docker-compose down --volumes
122+
run: docker compose down --volumes
123123

124124
fmt:
125125
name: Rustfmt

0 commit comments

Comments
 (0)