Skip to content

Commit

Permalink
try to switch to docker compose v2 (#646)
Browse files Browse the repository at this point in the history
Signed-off-by: Ilia Shipitsin <[email protected]>
  • Loading branch information
chipitsine authored Aug 8, 2024
1 parent 60fd462 commit e573c7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ run_test_prep: build_asan copy_asan_bin build_dbg copy_dbg_bin build_release cop
run_test:
# change dir, test would not work with absolute path
./cleanup-docker.sh
docker-compose -f ./docker-compose-test.yml up --exit-code-from odyssey
docker compose -f ./docker-compose-test.yml up --exit-code-from odyssey

submit-cov:
mkdir cov-build && cd cov-build
Expand All @@ -93,5 +93,5 @@ install:
install -D build/sources/odyssey $(DESTDIR)$(prefix)/bin/odyssey

start-dev-env:
docker-compose build dev
docker-compose up -d dev
docker compose build dev
docker compose up -d dev
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To start you will need a Docker installed. To install see [docker-for-mac](https
To start just run:

```bash
docker-compose up
docker compose up
```

This command will:
Expand Down

0 comments on commit e573c7a

Please sign in to comment.