Skip to content

Commit 51fc880

Browse files
committed
Move to using Docker Compose v2 explicitly
GitHub have removed v1 from their CI images, see actions/runner-images#9692. I thiiink this is what was already expected since the compose file is labelled as v2, though I don't know enough about docker compose to be sure.
1 parent a3b5752 commit 51fc880

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
- uses: actions/checkout@v4
3737

3838
- name: Build container
39-
run: docker-compose build
39+
run: docker compose build
4040

4141
- name: Build site in container
42-
run: docker-compose run docs rake build
42+
run: docker compose run docs rake build
4343

4444
changes:
4545
runs-on: ubuntu-latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The Student Robotics public documentation.
44

55
## Getting Started
66

7-
For ease of setup, a Docker container is provided. Simply install Docker and `docker-compose`, and run `docker-compose up`.
7+
For ease of setup, a Docker container is provided. Simply install Docker and `docker-compose`, and run `docker compose up`.
88

99
Once setup, the site will be accessible on http://localhost:4000/docs/
1010

0 commit comments

Comments
 (0)