Skip to content

Commit

Permalink
Using new docker compose command
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Chong <[email protected]>
  • Loading branch information
aaronchongth committed Nov 5, 2024
1 parent 603c86e commit f8631fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/integration-tests/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ services:
minimal-nav2:
image: minimal-nav2
build:
context: .github/minimal-nav2
# dockerfile: .github/minimal-nav2
container_name: minimal-nav2
context: ../../
dockerfile: .github/minimal-nav2/Dockerfile
# container_name: minimal-nav2
stop_signal: SIGINT
network_mode: host
privileged: true
Expand All @@ -19,9 +19,9 @@ services:
zenoh-bridge:
image: minimal-zenoh-bridge
build:
context: .github/minimal-zenoh-bridge
# dockerfile: docker/task_manager/Dockerfile
container_name: minimal-zenoh-bridge
context: ../../
dockerfile: .github/minimal-zenoh-bridge/Dockerfile
# container_name: minimal-zenoh-bridge
network_mode: host
stdin_open: true
tty: true
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v1

- name: Install dependencies
run: |
sudo apt update && sudo apt install docker-compose -y
- name: Start containers
run: docker-compose -f ".github/integration-tests/docker-compose.yaml" up -d --build
run: docker compose -f ".github/integration-tests/docker-compose.yaml" up -d --build

# - name: Install node
# uses: actions/setup-node@v1
Expand Down

0 comments on commit f8631fe

Please sign in to comment.