Skip to content

Commit

Permalink
Update check_running.yml
Browse files Browse the repository at this point in the history
Updated auto-check workflow to also copy docker-compose sample file, updated syntax to docker compose without "-"
  • Loading branch information
Pavlogal authored May 5, 2024
1 parent e1777eb commit 96b1c57
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/check_running.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ jobs:

- name: Copy environment file
run: cp .env.sample .env

- name: Copy docker-compose file
run: cp docker-compose.yml.sample docker-compose.yml

- name: Run setup.sh
run: ./setup.sh

- name: Run docker-compose
run: docker-compose up -d
- name: Run docker compose
run: docker compose up -d

0 comments on commit 96b1c57

Please sign in to comment.