Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changing docker-compose to docker compose
Browse files Browse the repository at this point in the history
mwarin committed Jan 18, 2024
1 parent 31a1287 commit daebe21
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -17,9 +17,9 @@ jobs:
- uses: actions/checkout@v2

- name: Build docker image
run: docker-compose --file docker-compose.test.yml build
run: docker compose --file docker-compose.test.yml build

- name: Run tests
run: docker-compose --file docker-compose.test.yml run sut
run: docker compose --file docker-compose.test.yml run sut
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ HathiTrust Ingest Toolkit
```bash
git clone https://github.com/hathitrust/feed
cd ingest
docker-compose build
docker compose build
```

# Development
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ services:
- ./ingest_stage:/tmp/stage
- ~/.config/rclone/rclone.conf:/usr/local/feed/etc/rclone.conf
- ./clamav:/var/lib/clamav
# FIXME -- before these will work, run: docker-compose run --rm ingest chown ingest.ingest /sdr1 /sdr2 /htdataden
# FIXME -- before these will work, run: docker compose run --rm ingest chown ingest.ingest /sdr1 /sdr2 /htdataden
- repository_link:/sdr1
- repository_obj:/sdr2
- backups:/htdataden
2 changes: 1 addition & 1 deletion t/emma.t
Original file line number Diff line number Diff line change
@@ -380,7 +380,7 @@ context "with volume & temporary ingest/preingest/zipfile dirs" => sub {
};

# To run these tests, first run
# `docker-compose run test freshclam -l -`
# `docker compose run test freshclam -l -`
# (You may need to adjust permissions on ./clamav)
if ( -e "/var/lib/clamav/main.cvd") {
use HTFeed::ClamScan;

0 comments on commit daebe21

Please sign in to comment.