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 committed Jul 2, 2024
1 parent 20317a9 commit a1f0c6b
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 a1f0c6b

Please sign in to comment.