Skip to content

Commit

Permalink
Add sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
klaus993 committed Oct 3, 2024
1 parent ef14009 commit c7805cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
uses: actions/checkout@v1

- name: Build containers
run: make docker_build
run: sudo make docker_build

- name: Start containers
run: make docker_up
run: sudo make docker_up

- name: Logs
run: sleep 30 && docker-compose -f "docker-compose.yaml" logs
run: sleep 30 && sudo docker-compose -f "docker-compose.yaml" logs

- name: Stop containers
if: always()
run: docker compose -f "docker-compose.yaml" down
run: sudo docker compose -f "docker-compose.yaml" down

0 comments on commit c7805cc

Please sign in to comment.