Skip to content

Commit

Permalink
ci: deprecate docker-compose and use docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
maany authored and alebg committed Aug 4, 2024
1 parent db0bdab commit 8230d72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
- name: Test Containers
run: |
docker-compose -f tests/docker-compose.yml up -d
docker compose -f tests/docker-compose.yml up -d
sleep 30
docker ps -a
docker-compose -f tests/docker-compose.yml down
docker compose -f tests/docker-compose.yml down
- name: Run pytest
run: |
poetry run pytest -s
4 changes: 2 additions & 2 deletions DEPLOYMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ docker build --rm -t maany/kernel-planckster .

## Bring up the dependencies
```
docker-compose -f docker-compose.yml --profile storage up -d
docker compose -f docker-compose.yml --profile storage up -d
```

## Run the Docker container
Expand Down Expand Up @@ -56,5 +56,5 @@ docker stop kernel-planckster && docker rm kernel-planckster

## Bring down the dependencies
```bash
docker-compose -f docker-compose.yml --profile storage down
docker compose -f docker-compose.yml --profile storage down
```

0 comments on commit 8230d72

Please sign in to comment.